diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2008-09-06 20:13:06 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2008-09-06 20:13:06 (GMT) |
commit | 693fc4604f9dd251949638228e282a0c8757b4ca (patch) | |
tree | 629b595fbfce66cfb0743a9d22fb6c4107380740 /Misc | |
parent | 35e661c7115256290e7abbf62f9d0bc602dfeac3 (diff) | |
download | cpython-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')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 ----------- |