@@ -392,6 +392,12 @@ class lazyT(object):
|
||||
def __eq__(self, other):
|
||||
return str(self) == str(other)
|
||||
|
||||
def __lt__(self, other):
|
||||
return str(self) < str(other)
|
||||
|
||||
def __gt__(self, other):
|
||||
return str(self) > str(other)
|
||||
|
||||
def __ne__(self, other):
|
||||
return str(self) != str(other)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user