Debugger/WatchPointModel.py

branch
Py2 comp.
changeset 3058
0a02c433f52d
parent 3057
10516539f238
parent 3021
801289962f4e
child 3060
5883ce99ee12
equal deleted inserted replaced
3057:10516539f238 3058:0a02c433f52d
188 ignore count (integer)) 188 ignore count (integer))
189 """ 189 """
190 if index.isValid(): 190 if index.isValid():
191 row = index.row() 191 row = index.row()
192 index1 = self.createIndex(row, 0, self.watchpoints[row]) 192 index1 = self.createIndex(row, 0, self.watchpoints[row])
193 index2 = self.createIndex(row, len(self.watchpoints[row]), 193 index2 = self.createIndex(
194 self.watchpoints[row]) 194 row, len(self.watchpoints[row]), self.watchpoints[row])
195 self.dataAboutToBeChanged.emit(index1, index2) 195 self.dataAboutToBeChanged.emit(index1, index2)
196 i = 0 196 i = 0
197 for value in [cond, special] + list(properties): 197 for value in [cond, special] + list(properties):
198 self.watchpoints[row][i] = value 198 self.watchpoints[row][i] = value
199 i += 1 199 i += 1

eric ide

mercurial