#17217: fix UnicodeEncodeErrors errors in test_format by printing ASCII only.

This commit is contained in:
Ezio Melotti 2013-02-23 07:53:56 +02:00
parent 1ca8794f10
commit 507eb09ad6
1 changed files with 3 additions and 3 deletions

View File

@ -13,10 +13,10 @@ maxsize = support.MAX_Py_ssize_t
def testformat(formatstr, args, output=None, limit=None, overflowok=False):
if verbose:
if output:
print("%r %% %r =? %r ..." %\
(formatstr, args, output), end=' ')
print("{!a} % {!a} =? {!a} ...".format(formatstr, args, output),
end=' ')
else:
print("%r %% %r works? ..." % (formatstr, args), end=' ')
print("{!a} % {!a} works? ...".format(formatstr, args), end=' ')
try:
result = formatstr % args
except OverflowError: