changeset: 104143:3afad465b3e1 branch: 3.6 parent: 104141:c81b9107ec42 user: Alexander Belopolsky date: Wed Sep 28 17:39:29 2016 -0400 files: Misc/NEWS description: Issue #28148: Added a NEWS entry. diff -r c81b9107ec42 -r 3afad465b3e1 Misc/NEWS --- a/Misc/NEWS Wed Sep 28 17:31:35 2016 -0400 +++ b/Misc/NEWS Wed Sep 28 17:39:29 2016 -0400 @@ -44,6 +44,13 @@ 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.