mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 12:14:27 +08:00
Added missing regexes (#4724)
This commit is contained in:
@@ -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__(
|
||||
|
||||
Reference in New Issue
Block a user