summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-01-17 16:40:17 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-01-17 16:40:17 (GMT)
commitd25f87ae366f205a88ed925e826367c952eadfd1 (patch)
tree76dbd25cc35af0dac8eedd691de41f5107ed5f28 /Misc
parentf320c2270104a2c4cf3285cb2adcbdff7e811004 (diff)
downloadcpython-d25f87ae366f205a88ed925e826367c952eadfd1.zip
cpython-d25f87ae366f205a88ed925e826367c952eadfd1.tar.gz
cpython-d25f87ae366f205a88ed925e826367c952eadfd1.tar.bz2
#3997: zipfiles generated with more than 65536 files could not be opened
with other applications. Reviewed by Martin, will backport to 2.6 and 3.0
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 57a9bd9..2e9e47d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -137,6 +137,9 @@ Core and Builtins
Library
-------
+- Issue #3997: zipfiles generated with more than 65536 files could not be
+ opened with other applications.
+
- Issue #1162154: inspect.getmembers() now skips attributes that raise
AttributeError, e.g. a __slots__ attribute which has not been set.