Exemplo n.º 1
0
 def __gt__(self, X):
     "Y.__gt__(X) <==> Y>X"
     return trunk(X, self)
Exemplo n.º 2
0
 def __lt__(self, X):
     "Y.__lt__(X) <==> Y<X"
     return trunk(self, X)
Exemplo n.º 3
0
 def __ge__(self, X):
     "Y.__ge__(X) <==> Y>=X"
     return trunk(X, self)
Exemplo n.º 4
0
 def __le__(self, X):
     "Y.__le__(X) <==> Y<=X"
     return trunk(self, X)
Exemplo n.º 5
0
 def __gt__(self, X):
     "Y.__gt__(X) <==> Y>X"
     return trunk(X, self)
Exemplo n.º 6
0
 def __ge__(self, X):
     "Y.__ge__(X) <==> Y>=X"
     return trunk(X, self)
Exemplo n.º 7
0
 def __lt__(self, X):
     "Y.__lt__(X) <==> Y<X"
     return trunk(self, X)
Exemplo n.º 8
0
 def __le__(self, X):
     "Y.__le__(X) <==> Y<=X"
     return trunk(self, X)