summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-19 17:13:37 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-19 17:13:37 (GMT)
commit423feea01e40699ad4e4c91139a64c71578b4eef (patch)
tree6639d37a6d366ea5b1be47e69961c54a129ebb2d /Misc
parent56cefa69ee919559cf3ca2388d12371c24402df3 (diff)
downloadcpython-423feea01e40699ad4e4c91139a64c71578b4eef.zip
cpython-423feea01e40699ad4e4c91139a64c71578b4eef.tar.gz
cpython-423feea01e40699ad4e4c91139a64c71578b4eef.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 2dc6e1c..4d9ca02 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.