[Python-checkins] python/dist/src/Lib/test test_types.py,1.62,1.63

tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Sat Sep 25 01:16:44 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25322/Lib/test

Modified Files:
	test_types.py 
Log Message:
Whitespace normalization.


Index: test_types.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_types.py,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -d -r1.62 -r1.63
--- test_types.py	24 Sep 2004 19:18:42 -0000	1.62
+++ test_types.py	24 Sep 2004 23:16:41 -0000	1.63
@@ -261,7 +261,7 @@
 if str(buffer(buffer('asdf', 0, 2), 0, 5000)) != 'as':
     raise TestFailed, 'composing length-specified buffer failed'
 if str(buffer(buffer('asdf', 0, 2), 0, -1)) != 'as':
-    raise TestFailed, 'composing length-specified buffer failed' 
+    raise TestFailed, 'composing length-specified buffer failed'
 if str(buffer(buffer('asdf', 0, 2), 1, 2)) != 's':
     raise TestFailed, 'composing length-specified buffer failed'
 



More information about the Python-checkins mailing list