# enum.IntEnum - pydoc - phpman

Help on class IntEnum in enum:

enum.IntEnum = class IntEnum(builtins.int, Enum)
 |  enum.IntEnum(value, names=None, *, module=None, qualname=None, type=None, start=1)
 |
 |  Enum where members are also (and must be) ints
 |
 |  Method resolution order:
 |      IntEnum
 |      builtins.int
 |      Enum
 |      builtins.object
 |
 |  Data descriptors inherited from Enum:
 |
 |  name
 |      The name of the Enum member.
 |
 |  value
 |      The value of the Enum member.
 |
 |  ----------------------------------------------------------------------
 |  Readonly properties inherited from EnumMeta:
 |
 |  __members__
 |      Returns a mapping of member name->value.
 |
 |      This mapping lists all enum members, including aliases. Note that this
 |      is a read-only view of the internal mapping.

