mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
#17217: merge with 3.3.
This commit is contained in:
commit
33136fa6e7
1 changed files with 3 additions and 3 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue