Home
last modified time | relevance | path

Searched refs:test_exc (Results 1 - 1 of 1) sorted by relevance

/third_party/python/Lib/test/
H A Dtest_format.py74 def test_exc(formatstr, args, exception, excmsg): function
93 test_exc(formatstr, args, exception, excmsg)
94 test_exc(formatstr.encode('ascii'), args, exception, excmsg)
295 test_exc('abc %b', 1, ValueError,
297 #test_exc(unicode('abc %\u3000','raw-unicode-escape'), 1, ValueError,
299 test_exc('%g', '1', TypeError, "must be real number, not str")
300 test_exc('no format', '1', TypeError,
302 test_exc('%c', -1, OverflowError, "%c arg not in range(0x110000)")
303 test_exc('%c', sys.maxunicode+1, OverflowError,
305 #test_exc('
[all...]

Completed in 1 milliseconds