summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2016-09-28 21:40:25 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2016-09-28 21:40:25 (GMT)
commitdc336f28dbff9dd6e5e678c01fedae50bd9c775f (patch)
tree74861718f36ac9af6a6afb85fa2d81008c6e688a /Misc/NEWS
parent9f518cd01a21ec5162ca83da8feee733d50e376f (diff)
parent3b7cfd4ffe4bfa780a4090fb0373e2e1fb8a4ca7 (diff)
downloadcpython-dc336f28dbff9dd6e5e678c01fedae50bd9c775f.zip
cpython-dc336f28dbff9dd6e5e678c01fedae50bd9c775f.tar.gz
cpython-dc336f28dbff9dd6e5e678c01fedae50bd9c775f.tar.bz2
Merged from 3.6
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0eb2d3a..56c156f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -50,6 +50,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.