From 5abff49d9fad7f1d30511b63d25ef08252cb331a Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Fri, 8 Jul 2016 15:20:39 -0700 Subject: [PATCH] Async: Timer: Removes __eq__ __ne__ --- kombu/async/timer.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/kombu/async/timer.py b/kombu/async/timer.py index 6843e766..821896a8 100644 --- a/kombu/async/timer.py +++ b/kombu/async/timer.py @@ -81,12 +81,6 @@ class Entry(object): def __lt__(self, other): return id(self) < id(other) - def __eq__(self, other): - return hash(self) == hash(other) - - def __ne__(self, other): - return not self.__eq__(other) - @property def cancelled(self): return self.canceled