summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2011-12-13 18:08:09 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2011-12-13 18:08:09 (GMT)
commit3bfc65a25ba2e010ef12db0cff006c2cbbeb18f9 (patch)
tree48d1cd0accf5405ab51196dee2f68551fd9e9175 /Misc
parent7b7e39a61f0c784252f94eeaae8ee44a44968a6f (diff)
downloadcpython-3bfc65a25ba2e010ef12db0cff006c2cbbeb18f9.zip
cpython-3bfc65a25ba2e010ef12db0cff006c2cbbeb18f9.tar.gz
cpython-3bfc65a25ba2e010ef12db0cff006c2cbbeb18f9.tar.bz2
Issue #13505: Make pickling of bytes object compatible with Python 2.
Initial patch by sbt.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6d18ddf..f654d8d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.3?
Core and Builtins
-----------------
+- Issue #13505: Pickle bytes objects in a way that is compatible with
+ Python 2 when using protocols <= 2.
+
- Issue #11147: Fix an unused argument in _Py_ANNOTATE_MEMORY_ORDER. (Fix
given by Campbell Barton).