summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2017-05-17 19:00:51 (GMT)
committerYury Selivanov <yury@magic.io>2017-05-17 19:00:51 (GMT)
commit378d70642aa1c8de2a53ecb811927faf0388db2d (patch)
treeb550ad335eedce735d615a132b4c1713896fdcec /Misc
parentf8d05b3a24e745ab4a974b891ac1389e2f11ce4d (diff)
downloadcpython-378d70642aa1c8de2a53ecb811927faf0388db2d.zip
cpython-378d70642aa1c8de2a53ecb811927faf0388db2d.tar.gz
cpython-378d70642aa1c8de2a53ecb811927faf0388db2d.tar.bz2
bpo-30149: Fix partialmethod without explicit self parameter (#1308)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4006ccd..5948cd9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -323,6 +323,10 @@ Extension Modules
Library
-------
+- bpo-30149: inspect.signature() now supports callables with
+ variable-argument parameters wrapped with partialmethod.
+ Patch by Dong-hee Na.
+
- bpo-30301: Fix AttributeError when using SimpleQueue.empty() under
*spawn* and *forkserver* start methods.