summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2017-06-15 14:41:57 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-06-15 14:41:57 (GMT)
commite45ea377b8d9ae23893d4587003c6d3e7f54b99a (patch)
treecf9720e2407bd4ce6be4ca7941ab7d801f2719ac /Misc/NEWS
parentcf58dfb44cc11d41ea1473cd7436618b210b8258 (diff)
downloadcpython-e45ea377b8d9ae23893d4587003c6d3e7f54b99a.zip
cpython-e45ea377b8d9ae23893d4587003c6d3e7f54b99a.tar.gz
cpython-e45ea377b8d9ae23893d4587003c6d3e7f54b99a.tar.bz2
bpo-30149: Fix partialmethod without explicit self parameter (#1308) (#1662)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1dc0019..00749f0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -51,6 +51,10 @@ Core and Builtins
Library
-------
+- bpo-30149: inspect.signature() now supports callables with
+ variable-argument parameters wrapped with partialmethod.
+ Patch by Dong-hee Na.
+
- bpo-29931: Fixed comparison check for ipaddress.ip_interface objects.
Patch by Sanjay Sundaresan.