diff --git a/stdlib/configparser.pyi b/stdlib/configparser.pyi index 095df4368660..cc27c9d20ea7 100644 --- a/stdlib/configparser.pyi +++ b/stdlib/configparser.pyi @@ -334,6 +334,7 @@ class RawConfigParser(_Parser): def items(self, section: _SectionName, raw: bool = False, vars: _Section | None = None) -> list[tuple[str, str]]: ... def values(self) -> ValuesView[SectionProxy]: ... + def popitem(self) -> tuple[str, SectionProxy]: ... def set(self, section: _SectionName, option: str, value: str | None = None) -> None: ... def write(self, fp: SupportsWrite[str], space_around_delimiters: bool = True) -> None: ... def remove_option(self, section: _SectionName, option: str) -> bool: ...