Debugger/VariablesFilterDialog.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2525
8b507a9a2d40
parent 2988
f53c03574697
child 3145
a9de05d4a22f
equal deleted inserted replaced
3056:9986ec0e559a 3057:10516539f238
57 57
58 def getSelection(self): 58 def getSelection(self):
59 """ 59 """
60 Public slot to retrieve the current selections. 60 Public slot to retrieve the current selections.
61 61
62 @return A tuple of lists of integer values. The first list is the locals variables 62 @return A tuple of lists of integer values. The first list is the
63 filter, the second the globals variables filter. 63 locals variables filter, the second the globals variables filter.
64 """ 64 """
65 lList = [] 65 lList = []
66 gList = [] 66 gList = []
67 for i in range(self.localsList.count()): 67 for i in range(self.localsList.count()):
68 itm = self.localsList.item(i) 68 itm = self.localsList.item(i)

eric ide

mercurial