[issue33009] Assertion failure in inspect.signature on unbound partialmethods

2018-03-06 Thread Yury Selivanov
Change by Yury Selivanov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue33009] Assertion failure in inspect.signature on unbound partialmethods

2018-03-06 Thread miss-islington
miss-islington added the comment: New changeset 387a055261267f5fafd2c12eafef49759c94704f by Miss Islington (bot) in branch '3.6': bpo-33009: Fix inspect.signature() for single-parameter partialmethods. (GH-6004)

[issue33009] Assertion failure in inspect.signature on unbound partialmethods

2018-03-06 Thread miss-islington
miss-islington added the comment: New changeset 112f799666bac1bdbb320840d5fda3132255eb5e by Miss Islington (bot) in branch '3.7': bpo-33009: Fix inspect.signature() for single-parameter partialmethods. (GH-6004)

[issue33009] Assertion failure in inspect.signature on unbound partialmethods

2018-03-06 Thread miss-islington
Change by miss-islington : -- pull_requests: +5772 ___ Python tracker ___

[issue33009] Assertion failure in inspect.signature on unbound partialmethods

2018-03-06 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 8a387219bdfb6ee34928d6168ac42ca559f11c9a by Yury Selivanov in branch 'master': bpo-33009: Fix inspect.signature() for single-parameter partialmethods. (GH-6004)

[issue33009] Assertion failure in inspect.signature on unbound partialmethods

2018-03-06 Thread miss-islington
Change by miss-islington : -- pull_requests: +5771 ___ Python tracker ___

[issue33009] Assertion failure in inspect.signature on unbound partialmethods

2018-03-06 Thread Yury Selivanov
Yury Selivanov added the comment: Yeah, that assertion needs to be tweaked a little bit. Created a PR. -- ___ Python tracker ___

[issue33009] Assertion failure in inspect.signature on unbound partialmethods

2018-03-06 Thread Yury Selivanov
Change by Yury Selivanov : -- keywords: +patch pull_requests: +5769 stage: needs patch -> patch review ___ Python tracker ___

[issue33009] Assertion failure in inspect.signature on unbound partialmethods

2018-03-06 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This is not a crash, but an assertion failure. The assertion was added in issue30149. -- nosy: +serhiy.storchaka, yselivanov stage: -> needs patch title: inspect.signature crashes on unbound partialmethods -> Assertion