Add missing definitions to Python 3 'traceback'

This commit is contained in:
Jukka Lehtosalo
2015-11-23 21:45:21 -08:00
parent a0deb69be9
commit d3efa5d6bc

View File

@@ -6,5 +6,8 @@ import typing
def format_exception_only(etype, value): ...
def format_tb(traceback): ...
def print_exc(limit=..., file=..., chain=...): ...
def extract_stack(f=..., limit=...): ...
def extract_tb(traceback, limit=...): ...
def format_list(list): ...
# TODO add more