diff options
Diffstat (limited to 'Lib/test/string_tests.py')
-rw-r--r-- | Lib/test/string_tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/string_tests.py b/Lib/test/string_tests.py index e363e3f2a3..3a5fbfefb5 100644 --- a/Lib/test/string_tests.py +++ b/Lib/test/string_tests.py @@ -383,8 +383,8 @@ class CommonTest(unittest.TestCase): #EQ("A", "", "replace", "", "A") # That was the correct result; this is the result we actually get - # now: - EQ("", "", "replace", "", "A") + # now (for str, but not for unicode): + #EQ("", "", "replace", "", "A") EQ("", "", "replace", "A", "") EQ("", "", "replace", "A", "A") |