diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-24 16:06:42 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-24 16:06:42 (GMT) |
commit | 32af7549a7cf8f112c44526a28afa6c99e67269c (patch) | |
tree | 0984789f4a78bf02a3ed3713dc115116bfe24e2b /Misc | |
parent | 944fbcc478e36523add77574e172caf518647c74 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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). |