summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-05-07 12:41:09 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-05-07 12:41:09 (GMT)
commit21eb48764c618eede0405ef840eadf1b03ff9b00 (patch)
tree74014667fe8b77408970089321c055ac10369fa9 /Misc
parent6dff0205b724669cc0469dd65a3f7edc5a69e1e7 (diff)
downloadcpython-21eb48764c618eede0405ef840eadf1b03ff9b00.zip
cpython-21eb48764c618eede0405ef840eadf1b03ff9b00.tar.gz
cpython-21eb48764c618eede0405ef840eadf1b03ff9b00.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 18995f1..3d0a4d0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -116,6 +116,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.