summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-01-14 22:58:05 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-01-14 22:58:05 (GMT)
commit351e1a3e8805bca158d1f116a637e787e2b70f18 (patch)
treecc46bfa7e030420a504a6bc55e98df7ab41e6882 /Misc
parent5d8b379abcf9e200122c7c95fbf012a5c9ef8e32 (diff)
downloadcpython-351e1a3e8805bca158d1f116a637e787e2b70f18.zip
cpython-351e1a3e8805bca158d1f116a637e787e2b70f18.tar.gz
cpython-351e1a3e8805bca158d1f116a637e787e2b70f18.tar.bz2
Fix 1698398: Zipfile.printdir() crashed because the format string expected a tuple object of length six instead of a time.struct_time object.
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 0ef721f..32dab10 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -363,6 +363,9 @@ Core and builtins
Library
-------
+- Issue #1698398 Zipfile.printdir() crashed because the format string
+ expected a tuple type of length six instead of time.struct_time object.
+
- Issue #1780: The Decimal constructor now accepts arbitrary leading
and trailing whitespace when constructing from a string.
Context.create_decimal no longer accepts trailing newlines.