eric7/Debugger/VariablesViewer.py

branch
eric7
changeset 8479
903b7d3b58af
parent 8473
754a0ff2ceaa
child 8531
4ce885e452ac
equal deleted inserted replaced
8478:b95aa969efdf 8479:903b7d3b58af
190 self.childCount = int(dvalue.split('x')[0]) 190 self.childCount = int(dvalue.split('x')[0])
191 dvalue = VariableItem.noOfItemsStr.format(dvalue) 191 dvalue = VariableItem.noOfItemsStr.format(dvalue)
192 else: 192 else:
193 dvalue = VariableItem.unsized 193 dvalue = VariableItem.unsized
194 self.hasChildren = True 194 self.hasChildren = True
195
195 elif dtype in VariableItem.arrayTypes: 196 elif dtype in VariableItem.arrayTypes:
196 self.childCount = int(dvalue) 197 self.childCount = int(dvalue)
197 dvalue = VariableItem.noOfItemsStr.format(dvalue) 198 dvalue = VariableItem.noOfItemsStr.format(dvalue)
198 self.hasChildren = True 199 self.hasChildren = True
199 200

eric ide

mercurial