mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
21 lines
291 B
Python
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:
|
|
...
|