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 trent
Recipients trent
Date 2012-08-21.05:31:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1345527139.3.0.960549174178.issue15750@psf.upfronthosting.co.za>
In-reply-to
Content
Narrowed it down to the following snippet:


>>> time.mktime((2012, 3, 12, 1, 1, 0, 0, 72, -1))
1331514060.0
[70780 refs]
>>> time.mktime((2012, 3, 12, 1, 1, 0, 0, 72, 1))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OverflowError: mktime argument out of range
[70832 refs]


On all my FreeBSD boxes, that latter invocation always raises an OverflowError.
History
Date User Action Args
2012-08-21 05:32:19trentsetrecipients: + trent
2012-08-21 05:32:19trentsetmessageid: <1345527139.3.0.960549174178.issue15750@psf.upfronthosting.co.za>
2012-08-21 05:31:58trentlinkissue15750 messages
2012-08-21 05:31:57trentcreate