Files
typeshed/stdlib/2.7/inspect.pyi
2015-11-09 13:55:02 -08:00

12 lines
278 B
Python

# TODO incomplete
from typing import Any, List, Tuple
def isgenerator(object: Any) -> bool: ...
class _Frame:
...
_FrameRecord = Tuple[_Frame, str, int, str, List[str], int]
def currentframe() -> _FrameRecord: ...
def stack(context: int = ...) -> List[_FrameRecord]: ...