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 2e912c8..a408ef3 100644 --- a/Lib/test/string_tests.py +++ b/Lib/test/string_tests.py @@ -44,8 +44,8 @@ def run_module_tests(test): test('join', BadSeq2(), 'a b c') # try a few long ones - print string.join(['x' * 100] * 100, ':') - print string.join(('x' * 100,) * 100, ':') + print ":".join(['x' * 100] * 100) + print ":".join(('x' * 100,) * 100) def run_method_tests(test): |