summaryrefslogtreecommitdiff
path: root/Lib/sched.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/sched.py')
-rw-r--r--Lib/sched.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/sched.py b/Lib/sched.py
index 409d126ef5..b47648d973 100644
--- a/Lib/sched.py
+++ b/Lib/sched.py
@@ -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)