From 802c8fbea4fd34f610b4f25122f47d76893a8b9a Mon Sep 17 00:00:00 2001 From: Nils K <24257556+septatrix@users.noreply.github.com> Date: Mon, 31 Aug 2020 14:55:30 +0200 Subject: [PATCH] Add missing default_section to RawConfigParser (#4505) --- stdlib/3/configparser.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/3/configparser.pyi b/stdlib/3/configparser.pyi index b550ba767..3d5d7d99d 100644 --- a/stdlib/3/configparser.pyi +++ b/stdlib/3/configparser.pyi @@ -48,6 +48,7 @@ class LegacyInterpolation(Interpolation): ... class RawConfigParser(_parser): BOOLEAN_STATES: ClassVar[Mapping[str, bool]] = ... # Undocumented + default_section: str def __init__( self, defaults: Optional[_section] = ...,