Home
last modified time | relevance | path

Searched refs:exctype (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/
Dresult.py154 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)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_codeccallbacks.py307 def check_exceptionobjectargs(self, exctype, args, msg): argument
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)