Open
Description
Current problem
Enum members should be compared by identity rather than equality: https://docs.python.org/3/library/enum.html#comparisons
Enumeration members are compared by identity:
Desired solution
Extending singleton-comparison
to cover this would seem to be one possible implementation.
Additional context
No response