mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Misc/NEWS 1.387->1.388 Lib/test/string_tests.py 1.10->1.11, 1.12->1.14, Lib/test/test_unicode.py 1.50->1.51, 1.53->1.54, 1.55->1.56 Lib/test/test_string.py 1.15->1.16 Lib/string.py 1.61->1.63 Lib/test/test_userstring.py 1.5->1.6, 1.11, 1.12 Objects/stringobject.c 2.156->2.159 Objects/unicodeobject.c 2.137->2.139 Doc/lib/libstdtypes.tec 1.87->1.88 Add a method zfill to str, unicode and UserString and change Lib/string.py accordingly (see SF patch http://www.python.org/sf/536241) This also adds Guido's fix to test_userstring.py and the subinstance checks in test_string.py and test_unicode.py.
44 lines
1.2 KiB
Python
Executable File
44 lines
1.2 KiB
Python
Executable File
#!/usr/bin/env python
|
|
import sys
|
|
from test_support import verbose
|
|
import string_tests
|
|
# UserString is a wrapper around the native builtin string type.
|
|
# UserString instances should behave similar to builtin string objects.
|
|
# The test cases were in part derived from 'test_string.py'.
|
|
from UserString import UserString
|
|
|
|
if __name__ == "__main__":
|
|
verbose = '-v' in sys.argv
|
|
|
|
tested_methods = {}
|
|
|
|
def test(methodname, input, output, *args):
|
|
global tested_methods
|
|
tested_methods[methodname] = 1
|
|
if verbose:
|
|
print '%r.%s(%s)' % (input, methodname, ", ".join(map(repr, args))),
|
|
u = UserString(input)
|
|
objects = [input, u, UserString(u)]
|
|
res = [""] * 3
|
|
for i in range(3):
|
|
object = objects[i]
|
|
try:
|
|
f = getattr(object, methodname)
|
|
except AttributeError:
|
|
f = None
|
|
res[i] = AttributeError
|
|
else:
|
|
try:
|
|
res[i] = apply(f, args)
|
|
except:
|
|
res[i] = sys.exc_type
|
|
if res[0] == res[1] == res[2] == output:
|
|
if verbose:
|
|
print 'yes'
|
|
else:
|
|
if verbose:
|
|
print 'no'
|
|
print (methodname, input, output, args, res[0], res[1], res[2])
|
|
|
|
string_tests.run_method_tests(test)
|