| .. | |||||
| __pycache__ | |||||
| classes | |||||
| decorators | |||||
| functions | |||||
| __init__.py | |||||
| _classes.py | |||||
| _decorators.py | |||||
| _functions.py | |||||
| _meta.py | |||||
| _state.py | |||||
| _types.py | |||||
| effe.py |
"""
PRIVATE MODULE: do not import (from) it directly.
This module contains types that are not available by default.
"""
import typing
from inspect import Parameter
T = typing.TypeVar('T')
KT = typing.TypeVar('KT')
VT = typing.TypeVar('VT')
Empty = Parameter.empty
Unknown = type('Unknown', (Empty, ), {})
Module = type(typing)
NoneType = type(None)
Ellipsis_ = type(...) # Use EllipsisType instead.
EllipsisType = type(...)
| .. | |||||
| __pycache__ | |||||
| classes | |||||
| decorators | |||||
| functions | |||||
| __init__.py | |||||
| _classes.py | |||||
| _decorators.py | |||||
| _functions.py | |||||
| _meta.py | |||||
| _state.py | |||||
| _types.py | |||||
| effe.py |