Files
typeshed/stdlib/linecache.pyi
2021-12-28 11:31:43 +01:00

17 lines
702 B
Python

from typing import Any, Protocol
_ModuleGlobals = dict[str, Any]
_ModuleMetadata = tuple[int, float, list[str], str]
class _SourceLoader(Protocol):
def __call__(self) -> str | None: ...
cache: dict[str, _SourceLoader | _ModuleMetadata] # undocumented
def getline(filename: str, lineno: int, module_globals: _ModuleGlobals | None = ...) -> str: ...
def clearcache() -> None: ...
def getlines(filename: str, module_globals: _ModuleGlobals | None = ...) -> list[str]: ...
def checkcache(filename: str | None = ...) -> None: ...
def updatecache(filename: str, module_globals: _ModuleGlobals | None = ...) -> list[str]: ...
def lazycache(filename: str, module_globals: _ModuleGlobals) -> bool: ...