def __lt__(self, other): return compare_chararrays(self, other, '<', True)
def __ge__(self, other): return compare_chararrays(self, other, '>=', True)
def __eq__(self, other): return compare_chararrays(self, other, '==', True)