summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-01-08 16:31:24 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-01-08 16:31:24 (GMT)
commitf7d019ec9a8fb492ce7dca3b94b05b189d0eb0c5 (patch)
treec41b44a2791dd28db5aa840c3a96e77f000feb7b /Misc
parentc08ea61373883db70396644934252e17b68b6efa (diff)
downloadcpython-f7d019ec9a8fb492ce7dca3b94b05b189d0eb0c5.zip
cpython-f7d019ec9a8fb492ce7dca3b94b05b189d0eb0c5.tar.gz
cpython-f7d019ec9a8fb492ce7dca3b94b05b189d0eb0c5.tar.bz2
Issue #1777412: document the change in the NEWS file
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0b2d346..962e58c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,11 @@ Core and Builtins
Library
-------
+- Issue #1777412: minimum year for time.asctime(), time.ctime() and
+ time.strftime() is now: 1000 instead of 1900 by default (accept2dyear=0) and
+ not limited instead of 1900 if accept2dyear=1. With Visual Studio or on
+ Solaris, the year is limited to the range [1; 9999].
+
- Issue #10859: Make ``contextlib.GeneratorContextManager`` officially
private by renaming it to ``_GeneratorContextManager``.