summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-24 16:06:42 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-24 16:06:42 (GMT)
commit32af7549a7cf8f112c44526a28afa6c99e67269c (patch)
tree0984789f4a78bf02a3ed3713dc115116bfe24e2b /Misc
parent944fbcc478e36523add77574e172caf518647c74 (diff)
downloadcpython-32af7549a7cf8f112c44526a28afa6c99e67269c.zip
cpython-32af7549a7cf8f112c44526a28afa6c99e67269c.tar.gz
cpython-32af7549a7cf8f112c44526a28afa6c99e67269c.tar.bz2
Issue #20289: The copy module now uses pickle protocol 4 (PEP 3154) and
supports copying of instances of classes whose __new__ method takes keyword-only arguments.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5cc5537..7d888a2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -26,6 +26,10 @@ Core and Builtins
Library
-------
+- Issue #20289: The copy module now uses pickle protocol 4 (PEP 3154) and
+ supports copying of instances of classes whose __new__ method takes
+ keyword-only arguments.
+
- Issue #23491: Added a zipapp module to support creating executable zip
file archives of Python code. Registered ".pyz" and ".pyzw" extensions
on Windows for these archives (PEP 441).