Home
last modified time | relevance | path

Searched refs:print_exception (Results 1 – 25 of 32) sorted by relevance

12

/external/python/cpython2/Doc/library/
Dtraceback.rst32 .. 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:
Dlogging.handlers.rst54 :func:`traceback.print_exception` and appended to the stream.
/external/python/cpython2/Lib/idlelib/
Drun.py127 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/
Dpysvr.py88 traceback.print_exception(SyntaxError, err, None, file=stdout)
117 traceback.print_exception(type, value, tb)
/external/python/cpython2/Lib/
Dtraceback.py110 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,
Dcgi.py915 print_exception()
928 print_exception()
930 def print_exception(type=None, value=None, tb=None, limit=None): function
Ddoctest.py245 traceback.print_exception(exc_type, exc_val, exc_tb, file=excout)
/external/python/cpython3/Doc/library/
Dtraceback.rst39 .. function:: print_exception(etype, value, tb, limit=None, file=None, chain=True)
68 This is a shorthand for ``print_exception(*sys.exc_info(), limit, file,
74 This is a shorthand for ``print_exception(sys.last_type, sys.last_value,
138 same meaning as the corresponding arguments to :func:`print_exception`. The
141 exactly the same text is printed as does :func:`print_exception`.
256 some containing internal newlines. :func:`~traceback.print_exception`
386 print("*** print_exception:")
388 traceback.print_exception(exc_type, exc_value, exc_traceback,
414 *** print_exception:
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/
Drun_tests103 traceback.print_exception(*args)
114 traceback.print_exception(exc, value, tb)
/external/python/cpython3/Lib/idlelib/
Drun.py158 print_exception()
162 traceback.print_exception(type, value, tb, file=sys.__stderr__)
200 def print_exception(): function
486 print_exception()
/external/python/cpython2/Tools/faqwiz/
Dfaqw.py33 cgi.print_exception(t, v, tb)
/external/python/cpython3/Lib/
Dtraceback.py87 def print_exception(etype, value, tb, limit=None, file=None, chain=True): function
163 print_exception(*sys.exc_info(), limit=limit, file=file, chain=chain)
174 print_exception(sys.last_type, sys.last_value, sys.last_traceback,
Dcgi.py872 print_exception()
885 print_exception()
887 def print_exception(type=None, value=None, tb=None, limit=None): function
Ddoctest.py244 traceback.print_exception(exc_type, exc_val, exc_tb, file=excout)
/external/python/cpython2/Lib/wsgiref/
Dhandlers.py291 from traceback import print_exception
293 print_exception(
/external/python/cpython3/Lib/wsgiref/
Dhandlers.py353 from traceback import print_exception
355 print_exception(
/external/python/cpython3/Misc/NEWS.d/
D3.5.0b4.rst113 Fix a regression in traceback.print_exception(). If exc_traceback is None
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_run.py29 run.print_exception()
/external/antlr/runtime/JavaScript/tests/functional/
Drhino-python.input190 traceback.print_exception(exc_type, exc_value, exc_traceback, l-m)
/external/python/cpython2/Lib/logging/
D__init__.py439 traceback.print_exception(ei[0], ei[1], ei[2], None, sio)
818 traceback.print_exception(ei[0], ei[1], ei[2],
/external/grpc-grpc/src/python/grpcio_tests/tests/
D_result.py342 traceback.print_exception(type, value, trace, file=buffer)
/external/python/cpython3/Lib/test/
Dtest_traceback.py211 traceback.print_exception(
694 traceback.print_exception(type(e), e, e.__traceback__)
/external/python/cpython3/Python/
Dpythonrun.c718 print_exception(PyObject *f, PyObject *value) in print_exception() function
901 print_exception(f, value); in print_exception_recursive()
/external/python/cpython3/Lib/logging/
D__init__.py577 traceback.print_exception(ei[0], ei[1], tb, None, sio)
958 traceback.print_exception(t, v, tb, None, sys.stderr)
/external/python/cpython3/Tools/unittestgui/
Dunittestgui.py110 traceback.print_exception(*sys.exc_info())

12