From 079584a0209fe9961f5fd4b9d30f3b8e7fac4707 Mon Sep 17 00:00:00 2001 From: Kaushal Rohit Date: Mon, 2 Nov 2020 02:26:02 +0530 Subject: [PATCH] Added missing regexes (#4724) --- stdlib/3/configparser.pyi | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/stdlib/3/configparser.pyi b/stdlib/3/configparser.pyi index 3d5d7d99d..ffd6b8603 100644 --- a/stdlib/3/configparser.pyi +++ b/stdlib/3/configparser.pyi @@ -47,6 +47,15 @@ class ExtendedInterpolation(Interpolation): ... class LegacyInterpolation(Interpolation): ... class RawConfigParser(_parser): + _SECT_TMPL: ClassVar[str] = ... # Undocumented + _OPT_TMPL: ClassVar[str] = ... # Undocumented + _OPT_NV_TMPL: ClassVar[str] = ... # Undocumented + + SECTCRE: Pattern[str] = ... + OPTCRE: ClassVar[Pattern[str]] = ... + OPTCRE_NV: ClassVar[Pattern[str]] = ... # Undocumented + NONSPACECRE: ClassVar[Pattern[str]] = ... # Undocumented + BOOLEAN_STATES: ClassVar[Mapping[str, bool]] = ... # Undocumented default_section: str def __init__(