commit | 41f58a70ac168c3f468d2dacb945dd88f1c89350 | [log] [tgz] |
---|---|---|
author | Alexandre Vassalotti <alexandre@peadrop.com> | Tue Jan 12 01:23:09 2010 +0000 |
committer | Alexandre Vassalotti <alexandre@peadrop.com> | Tue Jan 12 01:23:09 2010 +0000 |
tree | 19488ee2e0d7fcf442c05f0de4af57967988ebeb | |
parent | a278be3c8134d0ee39cf78147cfd4d0635c818d3 [diff] [blame] |
Issue #7382: Fix bytes.__getnewargs__.
diff --git a/Misc/NEWS b/Misc/NEWS index cc03801..db895b0 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -152,6 +152,10 @@ - Issue #1023290: Add from_bytes() and to_bytes() methods to integers. These methods allow the conversion of integers to bytes, and vice-versa. +- Issue #7382: Fix bug in bytes.__getnewargs__ that prevented bytes + instances from being copied with copy.copy(), and bytes subclasses + from being pickled properly. + C-API -----