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 David.Edelsohn
Recipients David.Edelsohn, python-dev, serhiy.storchaka, vstinner
Date 2014-02-21.14:51:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1392994311.15.0.607919768657.issue19748@psf.upfronthosting.co.za>
In-reply-to
Content
WITH the patch:

>>> time.ctime(-2**29)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OverflowError: ctime() timestamp argument out of range
>>> time.ctime(2**29)
'Mon Jan  5 10:48:32 1987'

OK (skipped=8)
1 test OK.
History
Date User Action Args
2014-02-21 14:51:51David.Edelsohnsetrecipients: + David.Edelsohn, vstinner, python-dev, serhiy.storchaka
2014-02-21 14:51:51David.Edelsohnsetmessageid: <1392994311.15.0.607919768657.issue19748@psf.upfronthosting.co.za>
2014-02-21 14:51:51David.Edelsohnlinkissue19748 messages
2014-02-21 14:51:50David.Edelsohncreate