]> granicus.if.org Git - python/commit
Issue #28148: Stop using localtime() and gmtime() in the time module.
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>
Wed, 28 Sep 2016 21:31:35 +0000 (17:31 -0400)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>
Wed, 28 Sep 2016 21:31:35 +0000 (17:31 -0400)
commit3e7a3cb903258321a17265a1c01976f88e7b72fc
treee848e2281c28dfccf6a277876c60b040579fec2b
parente5ccf3d699162e896b2bf7560d42d77a82405c5e
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.
Include/pytime.h
Misc/ACKS
Modules/_datetimemodule.c
Modules/timemodule.c
Python/pytime.c