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