summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-01-20 19:57:40 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-01-20 19:57:40 (GMT)
commit9b7a1a1af6de71411102e2b95ee3f654cb0cc700 (patch)
tree6640cddb13dc6c0da47373049956699fd3bdce06 /Misc
parent7e52705ee362001a8761461e9c4d49e3873568e0 (diff)
downloadcpython-9b7a1a1af6de71411102e2b95ee3f654cb0cc700.zip
cpython-9b7a1a1af6de71411102e2b95ee3f654cb0cc700.tar.gz
cpython-9b7a1a1af6de71411102e2b95ee3f654cb0cc700.tar.bz2
Issue #20262: Warnings are raised now when duplicate names are added in the
ZIP file or too long ZIP file comment is truncated.
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 c95e45f..62ffaa5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -43,6 +43,9 @@ Core and Builtins
Library
-------
+- Issue #20262: Warnings are raised now when duplicate names are added in the
+ ZIP file or too long ZIP file comment is truncated.
+
- Issue #18574: Added missing newline in 100-Continue reply from
http.server.BaseHTTPRequestHandler. Patch by Nikolaus Rath.