MCPcopy Index your code
hub / github.com/RustPython/RustPython / _print_exception_bltin

Function _print_exception_bltin

Lib/traceback.py:140–143  ·  view source on GitHub ↗
(exc, /)

Source from the content-addressed store, hash-verified

138
139
140def _print_exception_bltin(exc, /):
141 file = sys.stderr if sys.stderr is not None else sys.__stderr__
142 colorize = _colorize.can_colorize(file=file)
143 return print_exception(exc, limit=BUILTIN_EXCEPTION_LIMIT, file=file, colorize=colorize)
144
145
146def format_exception(exc, /, value=_sentinel, tb=_sentinel, limit=None, \

Callers

nothing calls this directly

Calls 1

print_exceptionFunction · 0.85

Tested by

no test coverage detected