]> granicus.if.org Git - python/commitdiff
Clean-up functools.total_ordering().
authorRaymond Hettinger <python@rcn.com>
Sun, 5 Sep 2010 05:57:35 +0000 (05:57 +0000)
committerRaymond Hettinger <python@rcn.com>
Sun, 5 Sep 2010 05:57:35 +0000 (05:57 +0000)
Lib/functools.py
Misc/NEWS

index 1effc08d9040f5110fb326650329ed7aef5cc69a..b2df390529e3e3c67c645fec4e767b62680c3d12 100644 (file)
@@ -65,7 +65,6 @@ def wraps(wrapped,
     return partial(update_wrapper, wrapped=wrapped,
                    assigned=assigned, updated=updated)
 
-_object_defaults = {object.__lt__, object.__le__, object.__gt__, object.__ge__}
 def total_ordering(cls):
     """Class decorator that fills in missing ordering methods"""
     convert = {
@@ -82,9 +81,8 @@ def total_ordering(cls):
                    ('__gt__', lambda self, other: not other >= self),
                    ('__lt__', lambda self, other: not self >= other)]
     }
-    roots = set(dir(cls)) & set(convert)
-    # Remove default comparison operations defined on object.
-    roots -= {meth for meth in roots if getattr(cls, meth) in _object_defaults}
+    # Find comparisons not inherited from object.
+    roots = [op for op in convert if getattr(cls, op) is not getattr(object, op)]
     if not roots:
         raise ValueError('must define at least one ordering operation: < > <= >=')
     root = max(roots)       # prefer __lt__ to __le__ to __gt__ to __ge__
index 8cc30a0e7ad986b34dd738d858eaf01eff552bb2..82ae15e4cb29c1acdd461cda85ec25ed4dced98d 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -222,7 +222,7 @@ Library
 
 - Issue #9501: Fixed logging regressions in cleanup code.
 
-- Fix functools.total_ordering() to actually work.
+- Fix functools.total_ordering() to skip methods inherited from object().
 
 - Issue #9572: Importlib should not raise an exception if a directory it
   thought it needed to create was done concurrently by another process.