This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Michael.Felt
Recipients EGuesnet, Michael.Felt, miss-islington, vstinner
Date 2020-01-30.15:06:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1580396789.45.0.685358065402.issue39502@roundup.psfhosted.org>
In-reply-to
Content
Seems to be working on 64-bit, starting 32-bit test (with overflow expected). Once finished will post a PR.

root@x065:[/data/prj/python/python3-3.9]./python
Python 3.9.0a3+ (heads/bpo-39502-dirty:8d49f7ceb4, Jan 30 2020, 14:47:52) [C] on aix
Type "help", "copyright", "credits" or "license" for more information.
>>> import time
>>> time.localtime(4325562452)
time.struct_time(tm_year=2107, tm_mon=1, tm_mday=27, tm_hour=9, tm_min=7, tm_sec=32, tm_wday=3, tm_yday=27, tm_isdst=0)
>>> time.gmtime(4325562452)
time.struct_time(tm_year=2107, tm_mon=1, tm_mday=27, tm_hour=9, tm_min=7, tm_sec=32, tm_wday=3, tm_yday=27, tm_isdst=0)
>>>
History
Date User Action Args
2020-01-30 15:06:29Michael.Feltsetrecipients: + Michael.Felt, vstinner, miss-islington, EGuesnet
2020-01-30 15:06:29Michael.Feltsetmessageid: <1580396789.45.0.685358065402.issue39502@roundup.psfhosted.org>
2020-01-30 15:06:29Michael.Feltlinkissue39502 messages
2020-01-30 15:06:29Michael.Feltcreate