Files
typeshed/stdlib/3/linecache.pyi
Jelle Zijlstra 349ff59f33 change empty bodies from "pass" to "..."
CONTRIBUTING.md says to prefer ... Not the most impactful change but fixing
these will allow us to lint for it in the future and get a consistent style.
2017-03-16 09:13:08 -07:00

6 lines
197 B
Python

from typing import Any
def getline(filename: str, lineno: int, module_globals: Any=...) -> str: ...
def clearcache() -> None: ...
def getlines(filename: str, module_globals: Any=...) -> None: ...