[Python-checkins] CVS: python/dist/src/Lib/test test_strftime.py,1.23,1.24

Eric S. Raymond esr@users.sourceforge.net
Fri, 09 Feb 2001 03:59:39 -0800


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

Modified Files:
	test_strftime.py 
Log Message:
String method conversion.


Index: test_strftime.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_strftime.py,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -r1.23 -r1.24
*** test_strftime.py	2001/01/17 21:51:36	1.23
--- test_strftime.py	2001/02/09 11:59:37	1.24
***************
*** 3,7 ****
  # Sanity checker for time.strftime
  
! import time, calendar, sys, string, os, re
  from test_support import verbose
  
--- 3,7 ----
  # Sanity checker for time.strftime
  
! import time, calendar, sys, os, re
  from test_support import verbose
  
***************
*** 91,95 ****
      if verbose:
          print "Strftime test, platform: %s, Python version: %s" % \
!               (sys.platform, string.split(sys.version)[0])
  
      for e in expectations:
--- 91,95 ----
      if verbose:
          print "Strftime test, platform: %s, Python version: %s" % \
!               (sys.platform, sys.version.split()[0])
  
      for e in expectations: