summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2015-10-06 13:29:56 -0400
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2015-10-06 13:29:56 -0400
commit2fc5c68fef8dbe2861f4165996bfba432b498dcc (patch)
tree576b2ed1a0058510c9fb2cf78a1e631808a7b438 /Misc
parenta492823f37b341093e54c8461ed5bd9554d68087 (diff)
downloadcpython-2fc5c68fef8dbe2861f4165996bfba432b498dcc.tar.gz
Closes issue #12006: Add ISO 8601 year, week, and day directives to strptime.
This commit adds %G, %V, and %u directives to strptime. Thanks Ashley Anderson for the implementation.
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 dec38bab98..074577f803 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -383,6 +383,9 @@ Library
- Issue #23572: Fixed functools.singledispatch on classes with falsy
metaclasses. Patch by Ethan Furman.
+- Issue #12006: Add ISO 8601 year, week, and day directives (%G, %V, %u) to
+ strptime.
+
Documentation
-------------