eric6/Debugger/DebugUI.py

branch
Variables Viewer
changeset 6995
ee314cf3b1c9
parent 6942
2602857055c5
child 7014
61172a5bc172
equal deleted inserted replaced
6994:681ed8916e69 6995:ee314cf3b1c9
1303 # now get the local variables 1303 # now get the local variables
1304 self.debugServer.remoteClientVariables(0, self.localsVarFilter) 1304 self.debugServer.remoteClientVariables(0, self.localsVarFilter)
1305 elif scope == 0: 1305 elif scope == 0:
1306 self.debugViewer.showVariables(variables, False) 1306 self.debugViewer.showVariables(variables, False)
1307 elif scope == -1: 1307 elif scope == -1:
1308 vlist = [('None', '', '')] 1308 vlist = [(self.tr('No locals available.'), '', '')]
1309 self.debugViewer.showVariables(vlist, False) 1309 self.debugViewer.showVariables(vlist, False)
1310 1310
1311 def __clientVariable(self, scope, variables): 1311 def __clientVariable(self, scope, variables):
1312 """ 1312 """
1313 Private method to write the contents of a clients classvariable to 1313 Private method to write the contents of a clients classvariable to

eric ide

mercurial