]> granicus.if.org Git - python/commitdiff
Issue #1777412: document the change in the NEWS file
authorVictor Stinner <victor.stinner@haypocalc.com>
Sat, 8 Jan 2011 16:31:24 +0000 (16:31 +0000)
committerVictor Stinner <victor.stinner@haypocalc.com>
Sat, 8 Jan 2011 16:31:24 +0000 (16:31 +0000)
Misc/NEWS

index 0b2d346eddf7fa54a2797c2fc9a95b87346b0687..962e58c89241a7b2a21504f66449fc3920c35cbf 100644 (file)
--- 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``.