diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-02-09 11:51:27 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-02-09 11:51:27 +0000 |
commit | fc170b1fd5db978f4e8d4c23c138a7b59df681ec (patch) | |
tree | 3c73ffcba8f5ece8c64a086a362b7fbe65368048 /Lib/test/string_tests.py | |
parent | d8c628bd59f70b5389c39fd9e6a15cb3e2d46f27 (diff) | |
download | cpython-git-fc170b1fd5db978f4e8d4c23c138a7b59df681ec.tar.gz |
String method conversion.
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 2e912c8ab3..a408ef3318 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): |