Skip to content

Commit 587235e

Browse files
committed
modified test_methodcaller
1 parent e62055e commit 587235e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

test_methodcaller.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,8 @@ def __repr__(self):
1212
return 'Point({!r:},{!r:},{!r:},{!r:})'.format(self.a, self.b, self.c, self.d)
1313
def __lt__(self, other):
1414
return (self.a < other.a if self.a != other.a else (self.b < other.b if self.b != other.b else (self.c < other.c if self.c != other.c else self.d < other.d)))
15-
def __le__(self, other):
16-
return self.a <= other.a and self.b <= other.b and self.c <= other.c and self.d <= other.d
1715
def __gt__(self, other):
1816
return (self.a > other.a if self.a != other.a else (self.b > other.b if self.b != other.b else (self.c > other.c if self.c != other.c else self.d > other.d)))
19-
def __ge__(self, other):
20-
return self.a >= other.a and self.b >= other.b and self.c >= other.c and self.d >= other.d
2117
def __eq__(self, other):
2218
return self.a == other.a and self.b == other.b and self.c == other.c and self.d == other.d
2319
def distance(self, a, b, c, d):

0 commit comments

Comments
 (0)