summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-12-05 19:40:08 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-12-05 19:40:08 (GMT)
commitb0e1f8b38bbbb80cd83ed15dde8cbad141296ae1 (patch)
treebd7abe826f2311c8bd8b4a21281e60015df0ddaa /Misc
parent3731142e190b63ac2a505727329dc0d527346037 (diff)
downloadcpython-b0e1f8b38bbbb80cd83ed15dde8cbad141296ae1.zip
cpython-b0e1f8b38bbbb80cd83ed15dde8cbad141296ae1.tar.gz
cpython-b0e1f8b38bbbb80cd83ed15dde8cbad141296ae1.tar.bz2
Issue #13503: Use a more efficient reduction format for bytearrays with
pickle protocol >= 3. The old reduction format is kept with older protocols in order to allow unpickling under Python 2. Patch by Irmen de Jong.
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 abb04e4..fbf18cc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
+- Issue #13503: Use a more efficient reduction format for bytearrays with
+ pickle protocol >= 3. The old reduction format is kept with older protocols
+ in order to allow unpickling under Python 2. Patch by Irmen de Jong.
+
- Issue #7111: Python can now be run without a stdin, stdout or stderr
stream. It was already the case with Python 2. However, the corresponding
sys module entries are now set to None (instead of an unusable file object).