Home
last modified time | relevance | path

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

/third_party/python/Lib/idlelib/
Drun.py178 print_exception()
182 traceback.print_exception(type, value, tb, file=sys.__stderr__)
235 def print_exception(): function
594 print_exception()
600 print_exception()
/third_party/python/Doc/library/
Dtraceback.rst39 .. function:: print_exception(exc, /[, value, tb], limit=None, \
77 This is a shorthand for ``print_exception(*sys.exc_info(), limit, file,
83 This is a shorthand for ``print_exception(sys.last_type, sys.last_value,
155 same meaning as the corresponding arguments to :func:`print_exception`. The
158 exactly the same text is printed as does :func:`print_exception`.
165 :func:`print_exception`.
282 some containing internal newlines. :func:`~traceback.print_exception`
415 print("*** print_exception:")
417 traceback.print_exception(exc_type, exc_value, exc_traceback,
443 *** print_exception:
Dlogging.handlers.rst52 is present, it is formatted using :func:`traceback.print_exception` and
Dlogging.rst634 just uses :func:`traceback.print_exception`. The resulting string is
/third_party/python/Lib/idlelib/idle_test/
Dtest_run.py33 run.print_exception()
74 run.print_exception()
400 cls.addClassCleanup(setattr,run,'print_exception',run.print_exception)
402 run.print_exception = cls.prt
417 sys.excepthook = lambda t, e, tb: run.print_exception(t)
/third_party/python/Tools/peg_generator/pegen/
D__main__.py44 traceback.print_exception(err.__class__, err, None)
69 traceback.print_exception(err.__class__, err, None)
Dparser.py288 traceback.print_exception(err.__class__, err, None)
/third_party/python/Lib/
Dtraceback.py104 def print_exception(exc, /, value=_sentinel, tb=_sentinel, limit=None, \ function
179 print_exception(*sys.exc_info(), limit=limit, file=file, chain=chain)
190 print_exception(sys.last_type, sys.last_value, sys.last_traceback,
Dcgi.py869 print_exception()
882 print_exception()
884 def print_exception(type=None, value=None, tb=None, limit=None): function
Dthreading.py1249 from traceback import print_exception as _print_exception
Ddoctest.py252 traceback.print_exception(exc_type, exc_val, exc_tb, file=excout)
/third_party/python/Lib/wsgiref/
Dhandlers.py367 from traceback import print_exception
369 print_exception(
/third_party/python/Lib/test/
Dtest_traceback.py234 traceback.print_exception(
241 traceback.print_exception(Exception("projector"), file=output)
262 traceback.print_exception(None, file=excfile)
266 traceback.print_exception(None, None, None, file=excfile)
284 str(inspect.signature(traceback.print_exception)),
843 traceback.print_exception(type(e), e, e.__traceback__)
/third_party/PyYAML/tests/lib/
Dtest_appliance.py95 traceback.print_exception(file=sys.stdout, *info)
/third_party/python/Misc/NEWS.d/
D3.5.0b4.rst113 Fix a regression in traceback.print_exception(). If exc_traceback is None
D3.10.0b4.rst286 Improve the help signature of :func:`traceback.print_exception`,
D3.10.0a6.rst194 Handle None in single-arg versions of :func:`~traceback.print_exception` and
D3.10.0a3.rst756 :func:`traceback.print_exception` functions can now take an exception object
/third_party/python/Python/
Dpythonrun.c890 print_exception(PyObject *f, PyObject *value) in print_exception() function
1103 print_exception(f, value); in print_exception_recursive()
/third_party/python/Lib/logging/
D__init__.py636 traceback.print_exception(ei[0], ei[1], tb, None, sio)
1022 traceback.print_exception(t, v, tb, None, sys.stderr)
/third_party/python/Tools/unittestgui/
Dunittestgui.py109 traceback.print_exception(*sys.exc_info())
/third_party/python/Tools/c-analyzer/
DTODO586 Python/pythonrun.c:print_exception():PyId___module__ _Py_IDENTIFIER(__module__)
587 Python/pythonrun.c:print_exception():PyId_print_file_and_line _Py_IDENTIFIER(print_file_and_line)
/third_party/python/Doc/whatsnew/
D3.10.rst1407 :func:`~traceback.print_exception` functions can now take an exception object
1870 :func:`~traceback.print_exception` functions in the :mod:`traceback` module
/third_party/python/Lib/tkinter/
D__init__.py2379 traceback.print_exception(exc, val, tb)
/third_party/python/Misc/
DHISTORY31823 - The cgi module has a new convenience function print_exception(), which