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 SilentGhost
Recipients SilentGhost, enrico
Date 2011-03-16.18:38:30
SpamBayes Score 0.00019195706
Marked as misclassified No
Message-id <1300300711.34.0.909868122492.issue11576@psf.upfronthosting.co.za>
In-reply-to
Content
To emphasize that it's only days parameter that is overflowing here is another case:

>>> timedelta(999999999, 1, 1) - timedelta(999999999, 0, 0)
datetime.timedelta(0, 1, 1)
>>> timedelta(999999999, 1, 1) - timedelta(999999999, 1, 0)
Traceback (most recent call last):
  File "<pyshell#18>", line 1, in <module>
    timedelta(999999999, 1, 1) - timedelta(999999999, 1, 0)
OverflowError: days=-1000000000; must have magnitude <= 999999999
History
Date User Action Args
2011-03-16 18:38:31SilentGhostsetrecipients: + SilentGhost, enrico
2011-03-16 18:38:31SilentGhostsetmessageid: <1300300711.34.0.909868122492.issue11576@psf.upfronthosting.co.za>
2011-03-16 18:38:30SilentGhostlinkissue11576 messages
2011-03-16 18:38:30SilentGhostcreate