summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2008-09-06 20:13:06 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2008-09-06 20:13:06 (GMT)
commit693fc4604f9dd251949638228e282a0c8757b4ca (patch)
tree629b595fbfce66cfb0743a9d22fb6c4107380740 /Misc/NEWS
parent35e661c7115256290e7abbf62f9d0bc602dfeac3 (diff)
downloadcpython-693fc4604f9dd251949638228e282a0c8757b4ca.zip
cpython-693fc4604f9dd251949638228e282a0c8757b4ca.tar.gz
cpython-693fc4604f9dd251949638228e282a0c8757b4ca.tar.bz2
Fixes release blocker issue #3492 and #3790.
Make zlib and zipimport to return bytes instead of bytearray and use bytes rather than bytearray for their internal leftover data storages.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bc6ede7..cbbe447 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -137,6 +137,10 @@ Extension Modules
- The _bytesio and _stringio modules are now compiled into the python binary.
+- Issue #3492 and #3790: Fixed the zlib module and zipimport module uses of
+ mutable bytearray objects where they should have been using immutable bytes.
+
+
Tools/Demos
-----------