Nick Coghlan added the comment:

Since the default eq implementation handles ducktyping correctly, dropping the 
Enum specific __eq__ implementation should be fine.

Just make sure this still works:

>>> class AlwaysEqual:
...     def __eq__(self, other):
...         return True
... 
>>> from enum import Enum
>>> class MyEnum(Enum):
...     a = 1
... 
>>> MyEnum.a == AlwaysEqual()
True
>>> AlwaysEqual() == MyEnum.a
True

----------
nosy: +ncoghlan
stage:  -> test needed

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue19249>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to