diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2016-09-28 17:39:29 -0400 |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2016-09-28 17:39:29 -0400 |
commit | 3b7cfd4ffe4bfa780a4090fb0373e2e1fb8a4ca7 (patch) | |
tree | 889001e8dbc8ea16d16cb7dd22cbf182d0f36c8e | |
parent | 3e7a3cb903258321a17265a1c01976f88e7b72fc (diff) | |
download | cpython-git-3b7cfd4ffe4bfa780a4090fb0373e2e1fb8a4ca7.tar.gz |
Issue #28148: Added a NEWS entry.
-rw-r--r-- | Misc/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -44,6 +44,13 @@ Core and Builtins Library ------- +- Issue #28148: Stop using localtime() and gmtime() in the time + module. + + Introduced platform independent _PyTime_localtime API that is + similar to POSIX localtime_r, but available on all platforms. Patch + by Ed Schouten. + - Issue #28253: Fixed calendar functions for extreme months: 0001-01 and 9999-12. |