[Python-checkins] python/dist/src/Lib/test string_tests.py,1.24,1.25

nascheme@projects.sourceforge.net nascheme@projects.sourceforge.net
Mon, 18 Nov 2002 08:12:19 -0800


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

Modified Files:
	string_tests.py 
Log Message:
check for str.__mod__


Index: string_tests.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/string_tests.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** string_tests.py	23 Aug 2002 18:21:26 -0000	1.24
--- string_tests.py	18 Nov 2002 16:12:11 -0000	1.25
***************
*** 283,286 ****
--- 283,289 ----
      test('zfill', '34', '0034', 4)
  
+     test('__mod__', '+%s+', '+hello+', 'hello')
+     test('__mod__', '+%d+', '+10+', 10)
+ 
      # Encoding/decoding
      codecs = [('rot13', 'uryyb jbeyq'),