[Python-Dev] test_datetime fails on alpha

Neal Norwitz neal@metaslash.com
Wed, 18 Dec 2002 19:44:45 -0500


I used the alpha in the SF compile to verify the bug.  The problem was
originally reported on the snake-farm from the test suite.

nnorwitz@usf-cf-alpha-linux-1:~/python/dist/src$ ./python 
Python 2.3a0 (#15, Dec 18 2002, 15:52:53) 
[GCC 2.95.4 20011002 (Debian prerelease)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from datetime import timedelta
>>> timedelta(1, 7, 31)
datetime.timedelta(1, 7, 31)
>>> _.days, _.seconds, _.microseconds
(30064771073, 133143986183, 31)

Neal