Helpviewer/History/HistoryFilterModel.py

changeset 3034
7ce719013078
parent 3022
57179e4cdadd
child 3060
5883ce99ee12
child 3160
209a07d7e401
equal deleted inserted replaced
3033:58fe260e7469 3034:7ce719013078
33 33
34 @param other reference to the object to check against (HistoryData) 34 @param other reference to the object to check against (HistoryData)
35 @return flag indicating equality (boolean) 35 @return flag indicating equality (boolean)
36 """ 36 """
37 return self.tailOffset == other.tailOffset and \ 37 return self.tailOffset == other.tailOffset and \
38 (self.frequency == -1 or other.frequency == -1 or \ 38 (self.frequency == -1 or other.frequency == -1 or
39 self.frequency == other.frequency) 39 self.frequency == other.frequency)
40 40
41 def __lt__(self, other): 41 def __lt__(self, other):
42 """ 42 """
43 Special method determining less relation. 43 Special method determining less relation.

eric ide

mercurial