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

A.M. Kuchling akuchling@users.sourceforge.net
Fri, 29 Mar 2002 08:00:16 -0800


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

Modified Files:
	string_tests.py 
Log Message:
Add two tests for string.zfill


Index: string_tests.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/string_tests.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** string_tests.py	17 Aug 2001 18:39:24 -0000	1.10
--- string_tests.py	29 Mar 2002 16:00:13 -0000	1.11
***************
*** 216,219 ****
--- 216,222 ----
      test('endswith', 'ab', 0, 'ab', 0, 0)
  
+     test('zfill', '34', '34', 1)
+     test('zfill', '34', '0034', 4)
+     
      # Encoding/decoding
      codecs = [('rot13', 'uryyb jbeyq'),