Skip to content
This repository has been archived by the owner on Dec 27, 2021. It is now read-only.

Commit

Permalink
Added missing regexes (python#4724)
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitkg98 authored Nov 1, 2020
1 parent 65603f8 commit 079584a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions stdlib/3/configparser.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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__(
Expand Down

0 comments on commit 079584a

Please sign in to comment.