mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
10 lines
435 B
Python
10 lines
435 B
Python
from typing import Any, Text
|
|
|
|
_ModuleGlobals = dict[str, Any]
|
|
|
|
def getline(filename: Text, lineno: int, module_globals: _ModuleGlobals | None = ...) -> str: ...
|
|
def clearcache() -> None: ...
|
|
def getlines(filename: Text, module_globals: _ModuleGlobals | None = ...) -> list[str]: ...
|
|
def checkcache(filename: Text | None = ...) -> None: ...
|
|
def updatecache(filename: Text, module_globals: _ModuleGlobals | None = ...) -> list[str]: ...
|