summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-09-29 20:36:06 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-09-29 20:36:06 (GMT)
commit68f5ef226e9b62b1755ee98ae3d35a4aedc56684 (patch)
treee0f85be148ced114808cd2f283452595fd080d7d /Misc
parente060619d4b047fdee613cafc64e3a9242a68ea54 (diff)
downloadcpython-68f5ef226e9b62b1755ee98ae3d35a4aedc56684.zip
cpython-68f5ef226e9b62b1755ee98ae3d35a4aedc56684.tar.gz
cpython-68f5ef226e9b62b1755ee98ae3d35a4aedc56684.tar.bz2
Issue #22609: Constructor of collections.UserDict now accepts the self keyword
argument.
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 a75b6e9..3a9ddda 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -78,6 +78,9 @@ Core and Builtins
Library
-------
+- Issue #22609: Constructor of collections.UserDict now accepts the self keyword
+ argument.
+
- Issue #25262. Added support for BINBYTES8 opcode in Python implementation of
unpickler. Highest 32 bits of 64-bit size for BINUNICODE8 and BINBYTES8
opcodes no longer silently ignored on 32-bit platforms in C implementation.