X-Git-Url: https://arthur.barton.de/gitweb/?p=bup.git;a=blobdiff_plain;f=lib%2Fbup%2Findex.py;h=ae6201853f45b9f4e7dc7816d03cdc7fda8895ec;hp=9873bc6889996aa18197284492de466993f9d13f;hb=c7013fde92fc73e0064462954918b09541e9a84f;hpb=60e9476cc61d15d60bbd1546973f89361a66d3eb diff --git a/lib/bup/index.py b/lib/bup/index.py index 9873bc6..ae62018 100644 --- a/lib/bup/index.py +++ b/lib/bup/index.py @@ -300,7 +300,7 @@ class Entry: def __eq__(self, other): return self._cmp(other) == 0 - def __ne__(): + def __ne__(self, other): return self._cmp(other) != 0 def __lt__(self, other): @@ -309,10 +309,10 @@ class Entry: def __gt__(self, other): return self._cmp(other) > 0 - def __le__(): + def __le__(self, other): return self._cmp(other) <= 0 - def __ge__(): + def __ge__(self, other): return self._cmp(other) >= 0 def write(self, f):