Message8464
Since python 3, __ne__ is defined in terms of __eq__ by the default object class.
It looks like 2 classes in security.py and password.py define an __ne__ as:
return not self.__eq__(other)
so these two defs can be removed.
The other instances define __ne__ in terms of cmp, return False or add isinstance()
checks before using != operator. |
|
| Date |
User |
Action |
Args |
| 2026-07-29 15:09:13 | rouilj | set | recipients:
+ rouilj |
| 2026-07-29 15:09:12 | rouilj | set | messageid: <1785337752.98.0.899686136443.issue2551419@roundup-tracker.org> |
| 2026-07-29 15:09:12 | rouilj | link | issue2551419 messages |
| 2026-07-29 15:09:12 | rouilj | create | |
|