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:
Oleg Höfling
2021-08-11 19:26:58 +02:00
committed by GitHub
parent 6c41e3cead
commit 64f481189f
34 changed files with 325 additions and 325 deletions

View File

@@ -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__(