Searched refs:print_exception (Results 1 – 15 of 15) sorted by relevance
/external/python/cpython2/Doc/library/ |
D | traceback.rst | 32 .. function:: print_exception(etype, value, tb[, limit[, file]]) 45 This is a shorthand for ``print_exception(sys.exc_type, sys.exc_value, 61 This is a shorthand for ``print_exception(sys.last_type, sys.last_value, 71 :func:`print_exception`. 117 same meaning as the corresponding arguments to :func:`print_exception`. The 120 exactly the same text is printed as does :func:`print_exception`. 185 print "*** print_exception:" 186 traceback.print_exception(exc_type, exc_value, exc_traceback, 209 *** print_exception:
|
D | logging.handlers.rst | 54 :func:`traceback.print_exception` and appended to the stream.
|
D | logging.rst | 507 just uses :func:`traceback.print_exception`. The resulting string is
|
/external/python/cpython2/Lib/idlelib/ |
D | run.py | 127 print_exception() 131 traceback.print_exception(type, value, tb, file=sys.__stderr__) 170 def print_exception(): function 336 print_exception()
|
/external/python/cpython2/Demo/pysvr/ |
D | pysvr.py | 88 traceback.print_exception(SyntaxError, err, None, file=stdout) 117 traceback.print_exception(type, value, tb)
|
/external/python/cpython2/Lib/ |
D | traceback.py | 110 def print_exception(etype, value, tb, limit=None, file=None): function 233 print_exception(etype, value, tb, limit, file) 254 print_exception(sys.last_type, sys.last_value, sys.last_traceback,
|
D | cgi.py | 915 print_exception() 928 print_exception() 930 def print_exception(type=None, value=None, tb=None, limit=None): function
|
D | doctest.py | 245 traceback.print_exception(exc_type, exc_val, exc_tb, file=excout)
|
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/ |
D | run_tests | 103 traceback.print_exception(*args) 114 traceback.print_exception(exc, value, tb)
|
/external/python/cpython2/Tools/faqwiz/ |
D | faqw.py | 33 cgi.print_exception(t, v, tb)
|
/external/python/cpython2/Lib/wsgiref/ |
D | handlers.py | 291 from traceback import print_exception 293 print_exception(
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
D | rhino-python.input | 190 traceback.print_exception(exc_type, exc_value, exc_traceback, l-m)
|
/external/python/cpython2/Lib/logging/ |
D | __init__.py | 439 traceback.print_exception(ei[0], ei[1], ei[2], None, sio) 811 traceback.print_exception(ei[0], ei[1], ei[2],
|
/external/python/cpython2/Lib/lib-tk/ |
D | Tkinter.py | 1901 traceback.print_exception(exc, val, tb)
|
/external/python/cpython2/Misc/ |
D | HISTORY | 14444 - The cgi module has a new convenience function print_exception(), which
|