Merge pull request #347 from fyquah95/master

Add stdlib/2.7/traceback._print
This commit is contained in:
Matthias Kramm
2016-07-07 09:33:12 -07:00
committed by GitHub

View File

@@ -17,3 +17,4 @@ def format_exception(type: type, value: BaseException, tb: TracebackType, limit:
def format_tb(f: TracebackType, limit: int = ...) -> List[str]: ...
def format_stack(f: FrameType = ..., limit: int = ...) -> List[str]: ...
def tb_lineno(tb: TracebackType) -> AnyStr: ...
def _print(f: IO[str], str: str = ..., terminator: str = ...) -> None: ...