From: Victor Stinner Date: Sat, 8 Jan 2011 16:31:24 +0000 (+0000) Subject: Issue #1777412: document the change in the NEWS file X-Git-Tag: v3.2rc1~101 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f7d019ec9a8fb492ce7dca3b94b05b189d0eb0c5;p=python Issue #1777412: document the change in the NEWS file --- diff --git a/Misc/NEWS b/Misc/NEWS index 0b2d346edd..962e58c892 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``.