diff options
Diffstat (limited to 'Lib/functools.py')
-rw-r--r-- | Lib/functools.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/functools.py b/Lib/functools.py index fa5bfdef09..20a26f9a2c 100644 --- a/Lib/functools.py +++ b/Lib/functools.py @@ -223,8 +223,6 @@ def cmp_to_key(mycmp): return mycmp(self.obj, other.obj) <= 0 def __ge__(self, other): return mycmp(self.obj, other.obj) >= 0 - def __ne__(self, other): - return mycmp(self.obj, other.obj) != 0 __hash__ = None return K |