commit | 3e7a3cb903258321a17265a1c01976f88e7b72fc | [log] [tgz] |
---|---|---|
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Wed Sep 28 17:31:35 2016 -0400 |
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Wed Sep 28 17:31:35 2016 -0400 |
tree | e848e2281c28dfccf6a277876c60b040579fec2b | |
parent | e5ccf3d699162e896b2bf7560d42d77a82405c5e [diff] |
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.