summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2008-01-19 23:10:52 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2008-01-19 23:10:52 (GMT)
commit350d03b18aeadc2292866a9df5a38cfa58785e10 (patch)
treed253ac28630e3b99112aa3ccbb829f07689739fc /Misc
parent70eb2f91b45e126ca8219d965b1d14968b0405cc (diff)
downloadcpython-350d03b18aeadc2292866a9df5a38cfa58785e10.zip
cpython-350d03b18aeadc2292866a9df5a38cfa58785e10.tar.gz
cpython-350d03b18aeadc2292866a9df5a38cfa58785e10.tar.bz2
Fixes/Accepts Patch for issue1189216 - Work properly with archives
that have file headers past the 2**31 byte boundary.
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 a068876..e988fc7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -369,6 +369,9 @@ Core and builtins
Library
-------
+- #1189216: Fix the zipfile module to work on archives with headers
+ past the 2**31 byte boundary.
+
- #1336: fix a race condition in subprocess.Popen if the garbage
collector kicked in at the wrong time that would cause the process
to hang when the child wrote to stderr.