summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-01-17 16:46:35 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-01-17 16:46:35 (GMT)
commit0293c804101f76796e1bf826717edd3417b2c431 (patch)
treeac0dbce6d3e849c56d6e6c1b4f3fdc4f33019083 /Misc
parent17d83f3d0d88c0982698dea21075ff8df4631ff2 (diff)
downloadcpython-0293c804101f76796e1bf826717edd3417b2c431.zip
cpython-0293c804101f76796e1bf826717edd3417b2c431.tar.gz
cpython-0293c804101f76796e1bf826717edd3417b2c431.tar.bz2
Merged revisions 68661 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r68661 | amaury.forgeotdarc | 2009-01-17 17:40:17 +0100 (Sat, 17 Jan 2009) | 5 lines #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 416dd49..ca72fcf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -73,6 +73,9 @@ Core and Builtins
Library
-------
+- Issue #3997: zipfiles generated with more than 65536 files could not be
+ opened with other applications.
+
- Issue 4816: itertools.combinations() and itertools.product were raising
a ValueError for values of *r* larger than the input iterable. They now
correctly return an empty iterator.