commit | fc170b1fd5db978f4e8d4c23c138a7b59df681ec | [log] [tgz] |
---|---|---|
author | Eric S. Raymond <esr@thyrsus.com> | Fri Feb 09 11:51:27 2001 +0000 |
committer | Eric S. Raymond <esr@thyrsus.com> | Fri Feb 09 11:51:27 2001 +0000 |
tree | 3c73ffcba8f5ece8c64a086a362b7fbe65368048 | |
parent | d8c628bd59f70b5389c39fd9e6a15cb3e2d46f27 [diff] [blame] |
String method conversion.
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 @@ 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):