summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-09-29 20:52:09 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-09-29 20:52:09 (GMT)
commitb5102e3550a589084bf33fae15bf131f47d51b0b (patch)
tree67a2d7be18a1517412cf2fc6d9e5b397fb6eccfc /Misc
parent68f5ef226e9b62b1755ee98ae3d35a4aedc56684 (diff)
downloadcpython-b5102e3550a589084bf33fae15bf131f47d51b0b.zip
cpython-b5102e3550a589084bf33fae15bf131f47d51b0b.tar.gz
cpython-b5102e3550a589084bf33fae15bf131f47d51b0b.tar.bz2
Issue #22958: Constructor and update method of weakref.WeakValueDictionary
now accept the self and the dict keyword arguments.
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 3a9ddda..3d5dfa9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -78,6 +78,9 @@ Core and Builtins
Library
-------
+- Issue #22958: Constructor and update method of weakref.WeakValueDictionary
+ now accept the self and the dict keyword arguments.
+
- Issue #22609: Constructor of collections.UserDict now accepts the self keyword
argument.