Bläddra i källkod

Drop python2ish ShaFile.__cmp__.

Jelmer Vernooij 2 år sedan
förälder
incheckning
2e30f2846c
1 ändrade filer med 0 tillägg och 6 borttagningar
  1. 0 6
      dulwich/objects.py

+ 0 - 6
dulwich/objects.py

@@ -564,12 +564,6 @@ class ShaFile(object):
             raise TypeError
         return self.id <= other.id
 
-    def __cmp__(self, other):
-        """Compare the SHA of this object with that of the other object."""
-        if not isinstance(other, ShaFile):
-            raise TypeError
-        return cmp(self.id, other.id)  # noqa: F821
-
 
 class Blob(ShaFile):
     """A Git Blob object."""