mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Whitespace normalization.
This commit is contained in:
parent
b808c5cf2d
commit
77c06fbf94
20 changed files with 13 additions and 36 deletions
|
|
@ -221,13 +221,13 @@ if have_unicode:
|
|||
|
||||
test_exc('%d', '1', TypeError, "int argument required")
|
||||
test_exc('%g', '1', TypeError, "float argument required")
|
||||
test_exc('no format', '1', TypeError,
|
||||
test_exc('no format', '1', TypeError,
|
||||
"not all arguments converted during string formatting")
|
||||
test_exc('no format', u'1', TypeError,
|
||||
test_exc('no format', u'1', TypeError,
|
||||
"not all arguments converted during string formatting")
|
||||
test_exc(u'no format', '1', TypeError,
|
||||
test_exc(u'no format', '1', TypeError,
|
||||
"not all arguments converted during string formatting")
|
||||
test_exc(u'no format', u'1', TypeError,
|
||||
test_exc(u'no format', u'1', TypeError,
|
||||
"not all arguments converted during string formatting")
|
||||
|
||||
if sys.maxint == 2**32-1:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue