def __cmp__(self, other): if self.behavior != other.behavior: return 1 else: return utils.cmp_string(self.key, other.key)
def __cmp__(self, other): return utils.cmp_string(self.name, other.name)
def __cmp__(self, other): return utils.cmp_string(self.script.str_relative(), other.script.str_relative())
def __cmp__(self, other): if self.behavior != other.behavior : return -1 else: return utils.cmp_string(self.key, other.key)