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 brian.curtin
Recipients Trundle, amaury.forgeotdarc, belopolsky, benjamin.peterson, brian.curtin, db3l, georg.brandl, pitrou, vstinner
Date 2011-01-03.16:43:37
SpamBayes Score 2.4172875e-08
Marked as misclassified No
Message-id <1294073020.04.0.983571805286.issue10814@psf.upfronthosting.co.za>
In-reply-to
Content
No crash on 0-day or 300,000. I bumped it up to 3,000,000 and got a UnicodeDecodeError, although I'm not sure of the relevance of that to this issue.


>>> time.asctime((12345, 1, 0, 0, 0, 0, 0, 0, 0))
'Mon Jan 01 00:00:00 <345'
[54935 refs]
>>> time.asctime((300000, 1, 0, 0, 0, 0, 0, 0, 0))
'Mon Jan 01 00:00:00 \\000'
[54935 refs]
>>> time.asctime((3000000, 1, 0, 0, 0, 0, 0, 0, 0))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
UnicodeDecodeError: 'utf8' codec can't decode byte 0xe8 in position 20: invalid continuation byte
History
Date User Action Args
2011-01-03 16:43:40brian.curtinsetrecipients: + brian.curtin, georg.brandl, db3l, amaury.forgeotdarc, belopolsky, pitrou, vstinner, benjamin.peterson, Trundle
2011-01-03 16:43:40brian.curtinsetmessageid: <1294073020.04.0.983571805286.issue10814@psf.upfronthosting.co.za>
2011-01-03 16:43:38brian.curtinlinkissue10814 messages
2011-01-03 16:43:37brian.curtincreate