Files
typeshed/builtins/3/imp.pyi
2015-09-30 09:59:44 -07:00

11 lines
231 B
Python

# Stubs for imp
# NOTE: These are incomplete!
from typing import TypeVar
_T = TypeVar('_T')
def cache_from_source(path: str, debug_override: bool = None) -> str: ...
def reload(module: _T) -> _T: ... # TODO imprecise signature