summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-05-25 21:52:19 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-05-25 21:52:19 (GMT)
commitd95d593f4714a2d3965e34d639b17d569b2397af (patch)
tree43df92e273b0a90e64184848dd40709f40dd5ccd /Lib
parent7a822dabadcc79acacc2e9cb02ada7cd4879371b (diff)
downloadcpython-d95d593f4714a2d3965e34d639b17d569b2397af.zip
cpython-d95d593f4714a2d3965e34d639b17d569b2397af.tar.gz
cpython-d95d593f4714a2d3965e34d639b17d569b2397af.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/string_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/string_tests.py b/Lib/test/string_tests.py
index 630618c..d4fdd8f 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')