[issue30149] inspect.signature() doesn't support partialmethod without explicit self parameter

2017-06-15 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___

[issue30149] inspect.signature() doesn't support partialmethod without explicit self parameter

2017-06-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset fb0825c2784f80689c4c00c3ede22958faaf512c by Serhiy Storchaka (Dong-hee Na) in branch '3.5': bpo-30149: Fix partialmethod without explicit self parameter (#1308) (#1663)

[issue30149] inspect.signature() doesn't support partialmethod without explicit self parameter

2017-06-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset e45ea377b8d9ae23893d4587003c6d3e7f54b99a by Serhiy Storchaka (Dong-hee Na) in branch '3.6': bpo-30149: Fix partialmethod without explicit self parameter (#1308) (#1662)

[issue30149] inspect.signature() doesn't support partialmethod without explicit self parameter

2017-05-18 Thread Dong-hee Na
Changes by Dong-hee Na : -- pull_requests: +1758 ___ Python tracker ___ ___

[issue30149] inspect.signature() doesn't support partialmethod without explicit self parameter

2017-05-18 Thread Dong-hee Na
Changes by Dong-hee Na : -- pull_requests: +1757 ___ Python tracker ___ ___

[issue30149] inspect.signature() doesn't support partialmethod without explicit self parameter

2017-05-17 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 378d70642aa1c8de2a53ecb811927faf0388db2d by Yury Selivanov (Dong-hee Na) in branch 'master': bpo-30149: Fix partialmethod without explicit self parameter (#1308) https://github.com/python/cpython/commit/378d70642aa1c8de2a53ecb811927faf0388db2d

[issue30149] inspect.signature() doesn't support partialmethod without explicit self parameter

2017-04-26 Thread Dong-hee Na
Dong-hee Na added the comment: I submitted the PR for this issue. -- nosy: +corona10 ___ Python tracker ___

[issue30149] inspect.signature() doesn't support partialmethod without explicit self parameter

2017-04-26 Thread Dong-hee Na
Changes by Dong-hee Na : -- pull_requests: +1415 ___ Python tracker ___ ___

[issue30149] inspect.signature() doesn't support partialmethod without explicit self parameter

2017-04-23 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: >>> import functools, inspect >>> class A: ... f = functools.partialmethod((lambda self, x, y, *args: ...), 1) ... >>> inspect.signature(A.f) >>> class A: ... f = functools.partialmethod((lambda *args: ...), 1) ... >>> inspect.signature(A.f)