summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-05-07 12:43:59 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-05-07 12:43:59 (GMT)
commit17e22959a444ee44c9462f3b66610950a8bc5a2b (patch)
treee6a3629e83b4c84422f0df8181f5e83d9aea37f3 /Misc
parent1acbf853c8be743c88141501ae879d63eb8ce209 (diff)
parent21eb48764c618eede0405ef840eadf1b03ff9b00 (diff)
downloadcpython-17e22959a444ee44c9462f3b66610950a8bc5a2b.zip
cpython-17e22959a444ee44c9462f3b66610950a8bc5a2b.tar.gz
cpython-17e22959a444ee44c9462f3b66610950a8bc5a2b.tar.bz2
Issue #17765: weakref.ref() no longer silently ignores keyword arguments.
Patch by Georg Brandl.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8edfc5b..705603b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -265,6 +265,9 @@ Core and Builtins
Library
-------
+- Issue #17765: weakref.ref() no longer silently ignores keyword arguments.
+ Patch by Georg Brandl.
+
- Issue #26873: xmlrpc now raises ResponseError on unsupported type tags
instead of silently return incorrect result.