From: Tim Peters Date: Thu, 25 May 2006 21:52:19 +0000 (+0000) Subject: Whitespace normalization. X-Git-Tag: v2.5b1~507 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d95d593f4714a2d3965e34d639b17d569b2397af;p=thirdparty%2FPython%2Fcpython.git Whitespace normalization. --- diff --git a/Lib/test/string_tests.py b/Lib/test/string_tests.py index 630618c317d8..d4fdd8fc0cc3 100644 --- a/Lib/test/string_tests.py +++ b/Lib/test/string_tests.py @@ -887,13 +887,13 @@ class MixinStrUnicodeUserStringTest: 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')