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 gkcn
Recipients SilentGhost, belopolsky, enrico, gkcn, mark.dickinson, python-dev
Date 2011-08-25.07:25:22
SpamBayes Score 2.3854112e-09
Marked as misclassified No
Message-id <1314257123.49.0.815889258075.issue11576@psf.upfronthosting.co.za>
In-reply-to
Content
I can still reproduce that error with Python 2.7.2:

Python 2.7.1 (r271:86832, Apr 27 2011, 15:42:42) 
[GCC 4.5.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from datetime import *
>>> timedelta(999999999, 86399, 999999) - timedelta(999999999, 86399, 999998)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OverflowError: days=-1000000000; must have magnitude <= 999999999
>>> 

and I see that patch is applied in 2.7.2.
History
Date User Action Args
2011-08-25 07:25:23gkcnsetrecipients: + gkcn, mark.dickinson, belopolsky, SilentGhost, python-dev, enrico
2011-08-25 07:25:23gkcnsetmessageid: <1314257123.49.0.815889258075.issue11576@psf.upfronthosting.co.za>
2011-08-25 07:25:22gkcnlinkissue11576 messages
2011-08-25 07:25:22gkcncreate