OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:exctype
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
result.py
146
exctype
, value, tb = err
150
if
exctype
is test.failureException:
153
msgLines = traceback.format_exception(
exctype
, value, tb, length)
155
msgLines = traceback.format_exception(
exctype
, value, tb)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
result.py
154
exctype
, value, tb = err
159
if
exctype
is test.failureException:
162
msgLines = traceback.format_exception(
exctype
, value, tb, length)
164
msgLines = traceback.format_exception(
exctype
, value, tb)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
result.py
154
exctype
, value, tb = err
159
if
exctype
is test.failureException:
162
msgLines = traceback.format_exception(
exctype
, value, tb, length)
164
msgLines = traceback.format_exception(
exctype
, value, tb)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_codeccallbacks.py
307
def check_exceptionobjectargs(self,
exctype
, args, msg):
310
self.assertRaises(TypeError,
exctype
, *args[:-1])
312
self.assertRaises(TypeError,
exctype
, *(args + ["too much"]))
326
self.assertRaises(TypeError,
exctype
, *callargs)
329
exc =
exctype
(*args)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_codeccallbacks.py
307
def check_exceptionobjectargs(self,
exctype
, args, msg):
310
self.assertRaises(TypeError,
exctype
, *args[:-1])
312
self.assertRaises(TypeError,
exctype
, *(args + ["too much"]))
326
self.assertRaises(TypeError,
exctype
, *callargs)
329
exc =
exctype
(*args)
Completed in 470 milliseconds