[Python-checkins] python/nondist/sandbox/datetime test_both.py,1.7,1.8

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Tue, 26 Nov 2002 09:37:00 -0800


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

Modified Files:
	test_both.py 
Log Message:
Eek!  There's a subtle discrepancy between the Python and C versions of
the TestDateTime class I hadn't noticed at first.  Just noted it here;
since "fixing it" causes more problems, I'm skipping that for now.  It
should be fixed, though.


Index: test_both.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/datetime/test_both.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** test_both.py	26 Nov 2002 17:31:20 -0000	1.7
--- test_both.py	26 Nov 2002 17:36:56 -0000	1.8
***************
*** 359,362 ****
--- 359,366 ----
  # datetime tests
  
+ # XXX The Python version of this test class inherits from TestDate.  And
+ # XXX it should.  Trying it here, though, causes 4 new errors when the
+ # XXX C implementation is getting tested.
+ 
  class TestDateTime(unittest.TestCase):