diff --git a/stdlib/3/configparser.pyi b/stdlib/3/configparser.pyi index 684eea510890..440ad8cf4bfa 100644 --- a/stdlib/3/configparser.pyi +++ b/stdlib/3/configparser.pyi @@ -93,6 +93,8 @@ class RawConfigParser(_parser): def read(self, filenames: Union[_Path, Iterable[_Path]], encoding: Optional[str] = ...) -> List[str]: ... + def readfp(self, fp: IO[str], filename: Optional[str] = ...) -> None: ... + def read_file(self, f: Iterable[str], source: Optional[str] = ...) -> None: ... def read_string(self, string: str, source: str = ...) -> None: ...