mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
Issue #23326: Removed __ne__ implementations. Since fixing default __ne__
implementation in issue #21408 they are redundant.
This commit is contained in:
parent
57f7db3122
commit
08448a1f4d
20 changed files with 3 additions and 104 deletions
|
@ -41,7 +41,6 @@ __all__ = ["scheduler"]
|
|||
|
||||
class Event(namedtuple('Event', 'time, priority, action, argument, kwargs')):
|
||||
def __eq__(s, o): return (s.time, s.priority) == (o.time, o.priority)
|
||||
def __ne__(s, o): return (s.time, s.priority) != (o.time, o.priority)
|
||||
def __lt__(s, o): return (s.time, s.priority) < (o.time, o.priority)
|
||||
def __le__(s, o): return (s.time, s.priority) <= (o.time, o.priority)
|
||||
def __gt__(s, o): return (s.time, s.priority) > (o.time, o.priority)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue