Home
last modified time | relevance | path

Searched refs:format_exception (Results 1 – 17 of 17) sorted by relevance

/external/python/cpython2/Lib/unittest/
Dresult.py162 msgLines = traceback.format_exception(exctype, value, tb, length)
164 msgLines = traceback.format_exception(exctype, value, tb)
/external/python/cpython2/Lib/
Dcgitb.py191 ''.join(traceback.format_exception(etype, evalue, etb)))
257 ''' % ''.join(traceback.format_exception(etype, evalue, etb))
283 doc = ''.join(traceback.format_exception(*info))
Dtraceback.py130 def format_exception(etype, value, tb, limit = None): function
242 return ''.join(format_exception(etype, value, tb, limit))
Dsite.py162 for record in traceback.format_exception(*sys.exc_info()):
Dsubprocess.py982 exc_lines = traceback.format_exception(exc_type,
/external/autotest/client/common_lib/
Derror.py8 from traceback import format_exception
18 trace = format_exception(t, o, tb)
/external/python/cpython2/Doc/library/
Dtraceback.rst114 .. function:: format_exception(etype, value, tb[, limit])
194 print "*** format_exception:"
195 print repr(traceback.format_exception(exc_type, exc_value,
226 *** format_exception:
/external/autotest/client/cros/
Dmainloop.py25 logging.warning(''.join(traceback.format_exception(*sys.exc_info())))
/external/python/cpython2/Demo/tix/samples/
DDirList.py129 for line in traceback.format_exception(t,v,tb):
/external/autotest/client/deps/lansim/src/py/
Dsimulator.py403 self.traceback = ''.join(traceback.format_exception(
/external/libmojo/third_party/jinja2/
Ddebug.py99 lines = traceback.format_exception(self.exc_type, self.exc_value,
/external/autotest/client/cros/cellular/
Dtest_environment.py130 lines = traceback.format_exception(except_type, except_value,
/external/autotest/server/hosts/
Dtestbed.py164 details = ''.join(traceback.format_exception(
/external/python/cpython2/Lib/unittest/test/
Dtest_result.py367 def format_exception(*_): member in MockTraceback
/external/python/cpython2/Demo/tix/
Dtixwidgets.py165 for line in traceback.format_exception(t,v,tb):
/external/python/cpython2/Lib/test/
Dtest_ssl.py81 exc_format = ' '.join(traceback.format_exception(*sys.exc_info()))
/external/python/cpython2/Misc/
DHISTORY107 - Bug #1531405, format_exception no longer raises an exception if
12176 - Fixed a tiny bug in format_exception() in the traceback module.