Files
typeshed/stdlib/linecache.pyi
2021-05-16 07:10:48 -07:00

11 lines
533 B
Python

from typing import Any, Dict, List, Optional
_ModuleGlobals = Dict[str, Any]
def getline(filename: str, lineno: int, module_globals: Optional[_ModuleGlobals] = ...) -> str: ...
def clearcache() -> None: ...
def getlines(filename: str, module_globals: Optional[_ModuleGlobals] = ...) -> List[str]: ...
def checkcache(filename: Optional[str] = ...) -> None: ...
def updatecache(filename: str, module_globals: Optional[_ModuleGlobals] = ...) -> List[str]: ...
def lazycache(filename: str, module_globals: _ModuleGlobals) -> bool: ...