[Python-checkins] CVS: python/dist/src/Lib/test string_tests.py,1.6,1.7

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


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

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


Index: string_tests.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/string_tests.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** string_tests.py	2001/01/29 11:14:15	1.6
--- string_tests.py	2001/02/09 11:43:35	1.7
***************
*** 45,50 ****
  
      # try a few long ones
!     print string.join(['x' * 100] * 100, ':')
!     print string.join(('x' * 100,) * 100, ':')
  
  
--- 45,50 ----
  
      # try a few long ones
!     print ":".join(['x' * 100] * 100)
!     print ":".join(('x' * 100,) * 100)