[Python-checkins] r46262 - python/trunk/Lib/test/string_tests.py

tim.peters python-checkins at python.org
Thu May 25 23:52:19 CEST 2006


Author: tim.peters
Date: Thu May 25 23:52:19 2006
New Revision: 46262

Modified:
   python/trunk/Lib/test/string_tests.py
Log:
Whitespace normalization.


Modified: python/trunk/Lib/test/string_tests.py
==============================================================================
--- python/trunk/Lib/test/string_tests.py	(original)
+++ python/trunk/Lib/test/string_tests.py	Thu May 25 23:52:19 2006
@@ -887,13 +887,13 @@
         self.checkequal(True, 'A', 'isupper')
         self.checkequal('A', 'a', 'upper')
         self.checkequal(True, 'a', 'islower')
- 
+
         self.checkequal('a', 'A', 'replace', 'A', 'a')
         self.checkequal(True, 'A', 'isupper')
 
         self.checkequal('A', 'a', 'capitalize')
         self.checkequal(True, 'a', 'islower')
-        
+
         self.checkequal('A', 'a', 'swapcase')
         self.checkequal(True, 'a', 'islower')
 


More information about the Python-checkins mailing list