Files
typeshed/stdlib/2.7/inspect.pyi
2015-09-30 09:59:44 -07:00

12 lines
279 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 = None) -> List[_FrameRecord]: ...