[Python-checkins] python/dist/src/Lib/test test_time.py,1.8,1.9

bwarsaw@sourceforge.net bwarsaw@sourceforge.net
Tue, 16 Apr 2002 05:37:57 -0700


Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv21674

Modified Files:
	test_time.py 
Log Message:
test_mktime(): Removed.  This wasn't really testing anything useful
(or platform independent).  Closes SF bug #460357.

Bug fix candidate.


Index: test_time.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_time.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** test_time.py	20 Sep 2001 21:33:42 -0000	1.8
--- test_time.py	16 Apr 2002 12:37:55 -0000	1.9
***************
*** 42,51 ****
          self.assertRaises(TypeError, time.asctime, 0)
  
-     def test_mktime(self):
-         self.assertRaises(OverflowError,
-                           time.mktime, (999999, 999999, 999999, 999999,
-                                         999999, 999999, 999999, 999999,
-                                         999999))
- 
  
  def test_main():
--- 42,45 ----