/third_party/python/Lib/idlelib/ |
D | run.py | 178 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/ |
D | traceback.rst | 39 .. 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:
|
D | logging.handlers.rst | 52 is present, it is formatted using :func:`traceback.print_exception` and
|
D | logging.rst | 634 just uses :func:`traceback.print_exception`. The resulting string is
|
/third_party/python/Lib/idlelib/idle_test/ |
D | test_run.py | 33 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__.py | 44 traceback.print_exception(err.__class__, err, None) 69 traceback.print_exception(err.__class__, err, None)
|
D | parser.py | 288 traceback.print_exception(err.__class__, err, None)
|
/third_party/python/Lib/ |
D | traceback.py | 104 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,
|
D | cgi.py | 869 print_exception() 882 print_exception() 884 def print_exception(type=None, value=None, tb=None, limit=None): function
|
D | threading.py | 1249 from traceback import print_exception as _print_exception
|
D | doctest.py | 252 traceback.print_exception(exc_type, exc_val, exc_tb, file=excout)
|
/third_party/python/Lib/wsgiref/ |
D | handlers.py | 367 from traceback import print_exception 369 print_exception(
|
/third_party/python/Lib/test/ |
D | test_traceback.py | 234 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/ |
D | test_appliance.py | 95 traceback.print_exception(file=sys.stdout, *info)
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.0b4.rst | 113 Fix a regression in traceback.print_exception(). If exc_traceback is None
|
D | 3.10.0b4.rst | 286 Improve the help signature of :func:`traceback.print_exception`,
|
D | 3.10.0a6.rst | 194 Handle None in single-arg versions of :func:`~traceback.print_exception` and
|
D | 3.10.0a3.rst | 756 :func:`traceback.print_exception` functions can now take an exception object
|
/third_party/python/Python/ |
D | pythonrun.c | 890 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__.py | 636 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/ |
D | unittestgui.py | 109 traceback.print_exception(*sys.exc_info())
|
/third_party/python/Tools/c-analyzer/ |
D | TODO | 586 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/ |
D | 3.10.rst | 1407 :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__.py | 2379 traceback.print_exception(exc, val, tb)
|
/third_party/python/Misc/ |
D | HISTORY | 31823 - The cgi module has a new convenience function print_exception(), which
|