diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2013-12-01 21:25:26 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2013-12-01 21:25:26 (GMT) |
commit | 5c1c3b4f197c57952760be37d77d73669284a607 (patch) | |
tree | a9ab8c86fa593dabb5a39b6b5fe797ef5ed47b02 /Misc | |
parent | 361e30c17a7973874334597903afb3ba5a477f49 (diff) | |
download | cpython-5c1c3b4f197c57952760be37d77d73669284a607.zip cpython-5c1c3b4f197c57952760be37d77d73669284a607.tar.gz cpython-5c1c3b4f197c57952760be37d77d73669284a607.tar.bz2 |
Issue #11480: Fixed copy.copy to work with classes with custom metaclasses.
Patch by Daniel Urban.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -24,6 +24,9 @@ Library - Fixed _pickle.Unpickler to not fail when loading empty strings as persistent IDs. +- Issue #11480: Fixed copy.copy to work with classes with custom metaclasses. + Patch by Daniel Urban. + - Issue #6477: Added support for pickling the types of built-in singletons (i.e., Ellipsis, NotImplemented, None). |