mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
11 lines
202 B
Python
11 lines
202 B
Python
# Stubs for traceback
|
|
|
|
import typing
|
|
|
|
# TODO signatures
|
|
def format_exception_only(etype, value): ...
|
|
def format_tb(traceback): ...
|
|
def print_exc(limit=None, file=None, chain=True): ...
|
|
|
|
# TODO add more
|