[Python-checkins] CVS: python/nondist/sandbox/datetime test_datetime.py,1.34,1.35

Tim Peters tim_one@users.sourceforge.net
Tue, 05 Mar 2002 00:00:43 -0800


Update of /cvsroot/python/python/nondist/sandbox/datetime
In directory usw-pr-cvs1:/tmp/cvs-serv7779

Modified Files:
	test_datetime.py 
Log Message:
Finished a new comment.


Index: test_datetime.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/datetime/test_datetime.py,v
retrieving revision 1.34
retrieving revision 1.35
diff -C2 -d -r1.34 -r1.35
*** test_datetime.py	5 Mar 2002 07:59:12 -0000	1.34
--- test_datetime.py	5 Mar 2002 08:00:41 -0000	1.35
***************
*** 408,412 ****
          # 3652058 days, 23 hours, 59 minutes, 59 seconds, 999999 microseconds
          n = (big.days*24*3600 + big.seconds)*1000000 + big.microseconds
!         # n = 315537897599999999
          justasbig = timedelta(0, 0, n)
          self.assertEqual(big, justasbig)
--- 408,412 ----
          # 3652058 days, 23 hours, 59 minutes, 59 seconds, 999999 microseconds
          n = (big.days*24*3600 + big.seconds)*1000000 + big.microseconds
!         # n = 315537897599999999 ~= 2**58.13
          justasbig = timedelta(0, 0, n)
          self.assertEqual(big, justasbig)