Lines Matching refs:other
20 def __eq__(self, other):
21 return self.align == other.align and self.offset == other.offset
78 def combine_with(self, other):
80 # both, self or other, can happen
81 new_align = gcd(self.align, other.align)
83 new_offset_candidate2 = other.offset % new_align
90 new_offset_candidate2 = other.offset % new_align
174 def append(self, other):
175 self.ok_list.extend(other.ok_list)
176 self.fail_list.extend(other.fail_list)