summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-19 17:14:15 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-19 17:14:15 (GMT)
commitfc7344a79219643a18449074c09d28773a70f975 (patch)
treee383b68225b76876bbf9a566fc1db8ce4dbb6041 /Misc
parent4f418d36714787fa85652806c93405e4874bca61 (diff)
parent423feea01e40699ad4e4c91139a64c71578b4eef (diff)
downloadcpython-fc7344a79219643a18449074c09d28773a70f975.zip
cpython-fc7344a79219643a18449074c09d28773a70f975.tar.gz
cpython-fc7344a79219643a18449074c09d28773a70f975.tar.bz2
Issue #23136: _strptime now uniformly handles all days in week 0, including
Jan 30 of previous year. Based on patch by Jim Carroll.
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 7f98bd7..a75c4b4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Core and Builtins
Library
-------
+- Issue #23136: _strptime now uniformly handles all days in week 0, including
+ Jan 30 of previous year. Based on patch by Jim Carroll.
+
- Issue #23700: Iterator of NamedTemporaryFile now keeps a reference to
NamedTemporaryFile instance. Patch by Bohuslav Kabrda.