#17217: merge with 3.3.

This commit is contained in:
Ezio Melotti 2013-02-23 07:58:28 +02:00
commit 33136fa6e7
1 changed files with 3 additions and 3 deletions

View File

@ -14,10 +14,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: