summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2010-01-12 01:23:09 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2010-01-12 01:23:09 (GMT)
commit41f58a70ac168c3f468d2dacb945dd88f1c89350 (patch)
tree19488ee2e0d7fcf442c05f0de4af57967988ebeb /Misc
parenta278be3c8134d0ee39cf78147cfd4d0635c818d3 (diff)
downloadcpython-41f58a70ac168c3f468d2dacb945dd88f1c89350.zip
cpython-41f58a70ac168c3f468d2dacb945dd88f1c89350.tar.gz
cpython-41f58a70ac168c3f468d2dacb945dd88f1c89350.tar.bz2
Issue #7382: Fix bytes.__getnewargs__.
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 cc03801..db895b0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -152,6 +152,10 @@ Core and Builtins
- 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
-----