summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2009-06-26 08:05:13 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2009-06-26 08:05:13 (GMT)
commite88749b47585b848ffc0cf40760526b937119474 (patch)
treed1b9b35f9c5c412647727d14e72453ae961434d7 /Misc
parent619de8f107b854fc1a5b91f300c89253d5802cd5 (diff)
downloadcpython-e88749b47585b848ffc0cf40760526b937119474.zip
cpython-e88749b47585b848ffc0cf40760526b937119474.tar.gz
cpython-e88749b47585b848ffc0cf40760526b937119474.tar.bz2
Merged revisions 73565 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r73565 | gregory.p.smith | 2009-06-26 00:50:21 -0700 (Fri, 26 Jun 2009) | 2 lines Fixes the last problem mentioned in issue1202. ........ Issue #1202: zipfile module would cause a struct.error when attempting to store files with a CRC32 > 2**31-1. (on trunk this was merely a warning, in the py3k branch this caused an exception so I'm treating this as a release blocker and merging it now)
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 0f6f901..32101b5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,9 @@ Library
- Issue #6271: mmap tried to close invalid file handle (-1) when anonymous.
(On Unix)
+- Issue #1202: zipfile module would cause a struct.error when attempting to
+ store files with a CRC32 > 2**31-1.
+
Extension Modules
-----------------