summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2011-10-19 17:46:00 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2011-10-19 17:46:00 (GMT)
commit29fa9d4d68af7d22b88545fa8bc4ae186d256fd3 (patch)
tree1f884092ef016b20bffeec3566e0323d82ddf221 /Misc
parent1ef0c0349e8fdb5415e21231cb42edbf232b742a (diff)
downloadcpython-29fa9d4d68af7d22b88545fa8bc4ae186d256fd3.zip
cpython-29fa9d4d68af7d22b88545fa8bc4ae186d256fd3.tar.gz
cpython-29fa9d4d68af7d22b88545fa8bc4ae186d256fd3.tar.bz2
3.2 - Fix closes Issue6090 - Raise a ValueError, instead of failing with unrelated
exceptions, when a document with timestamp earlier than 1980 is provided to zipfile. Patch contributed by Petri Lehtinen.
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 c9804fc..9b4d833 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -54,6 +54,9 @@ Library
- Issue #12448: smtplib now flushes stdout while running ``python -m smtplib``
in order to display the prompt correctly.
+- Issue #6090: zipfile raises a ValueError when a document with a timestamp
+ earlier than 1980 is provided. Patch contributed by Petri Lehtinen.
+
- Issue #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are
now available on Windows.