Draft of typing spec chapter for enums

Another case that may need some explicit language is enums of unusual types. Usually enum values are ints or strs, but they can of course be of any type. Sebastian brought up the ssl.Purpose enum as an example. Do I understand correctly that in a stub, it should be specified as:

class Purpose(_ASN1Object, enum.Enum):
    _value_: _ASN1Object
    SERVER_AUTH = ...
    CLIENT_AUTH = ...