DebugClients/Python/DebugClientBase.py

changeset 5595
1d4706f786d6
parent 5590
40e18a10d837
parent 5594
6e477a8e990c
child 5616
adcffadf4962
equal deleted inserted replaced
5590:40e18a10d837 5595:1d4706f786d6
1426 vlist = self.__formatQtVariable(variable, typeName) 1426 vlist = self.__formatQtVariable(variable, typeName)
1427 varlist.extend(vlist) 1427 varlist.extend(vlist)
1428 elif resolver: 1428 elif resolver:
1429 varDict = resolver.getDictionary(variable) 1429 varDict = resolver.getDictionary(variable)
1430 vlist = self.__formatVariablesList( 1430 vlist = self.__formatVariablesList(
1431 list(dict.keys()), varDict, scope, filterList) 1431 list(varDict.keys()), varDict, scope, filterList)
1432 varlist.extend(vlist) 1432 varlist.extend(vlist)
1433 1433
1434 self.sendJsonCommand("ResponseVariable", { 1434 self.sendJsonCommand("ResponseVariable", {
1435 "scope": scope, 1435 "scope": scope,
1436 "variable": var, 1436 "variable": var,

eric ide

mercurial