Lines Matching refs:enumerations
1 :mod:`enum` --- Support for enumerations
151 Sometimes it's useful to access members in enumerations programmatically (i.e.
217 By default, enumerations allow multiple names as aliases for the same value.
223 A :keyword:`class` decorator specifically for enumerations. It searches an
340 Allowed members and attributes of enumerations
347 enumerations can have arbitrary values.
408 TypeError: Cannot extend enumerations
423 sense to allow sharing some common behavior between a group of enumerations.
472 enumerations; the others auto-assign increasing integers starting with 1 (use
552 by extension, integer enumerations of different types can also be compared
571 However, they still can't be compared to standard :class:`Enum` enumerations::
707 thus by transitivity to other unrelated enumerations). :class:`IntEnum`
710 with enumerations, or for interoperability with other systems.
722 This demonstrates how similar derived enumerations can be defined; for example
752 are recipes for some different types of enumerations that can be used directly,
860 enumerations)::