module documentation

Semantic analysis of call-based Enum definitions. This is conceptually part of mypy.semanal (semantic analyzer pass 2).

Class EnumCallAnalyzer No class docstring; 0/2 instance variable, 3/7 methods documented
Constant ENUM_BASES Undocumented
Constant ENUM_SPECIAL_PROPS Undocumented
ENUM_BASES = (source)

Undocumented

Value
frozenset(('enum.Enum',
           'enum.IntEnum',
           'enum.Flag',
           'enum.IntFlag',
           'enum.StrEnum'))
ENUM_SPECIAL_PROPS = (source)

Undocumented

Value
frozenset(('name',
           'value',
           '_name_',
           '_value_',
           *ENUM_REMOVED_PROPS,
           '__module__',
           '__annotations__',
...