mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
11 lines
231 B
Python
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 = ...) -> str: ...
|
|
def reload(module: _T) -> _T: ... # TODO imprecise signature
|