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

21 lines
291 B
Python

# Stubs for types
from typing import Any
class ModuleType:
__name__ = ... # type: str
__file__ = ... # type: str
def __init__(self, name: str, doc: Any) -> None: ...
class TracebackType:
...
class FrameType:
...
class GeneratorType:
...
class ListType:
...