mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
drop ellipsis assignments from module vars, classvars and instance attrs (#5914)
Signed-off-by: oleg.hoefling <oleg.hoefling@gmail.com>
This commit is contained in:
@@ -48,16 +48,16 @@ class LegacyInterpolation(Interpolation):
|
||||
def before_get(self, parser: _parser, section: str, option: str, value: str, vars: _section) -> str: ...
|
||||
|
||||
class RawConfigParser(_parser):
|
||||
_SECT_TMPL: ClassVar[str] = ... # undocumented
|
||||
_OPT_TMPL: ClassVar[str] = ... # undocumented
|
||||
_OPT_NV_TMPL: ClassVar[str] = ... # undocumented
|
||||
_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
|
||||
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
|
||||
BOOLEAN_STATES: ClassVar[Mapping[str, bool]] # undocumented
|
||||
default_section: str
|
||||
@overload
|
||||
def __init__(
|
||||
|
||||
Reference in New Issue
Block a user