mirror of
https://github.com/python/cpython.git
synced 2025-08-27 04:05:34 +00:00
String method conversion.
This commit is contained in:
parent
d8c628bd59
commit
fc170b1fd5
19 changed files with 58 additions and 79 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue