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 |