Debugger/DebugUI.py

changeset 5590
40e18a10d837
parent 5586
0e5421d679e7
child 5658
e5f6fe5855fd
equal deleted inserted replaced
5589:ad8f37c6a306 5590:40e18a10d837
1283 @param scope scope of the variables (-1 = empty global, 1 = global, 1283 @param scope scope of the variables (-1 = empty global, 1 = global,
1284 0 = local) 1284 0 = local)
1285 @param variables the list of members of a classvariable from the client 1285 @param variables the list of members of a classvariable from the client
1286 """ 1286 """
1287 if scope == 1: 1287 if scope == 1:
1288 self.debugViewer.showVariable(variables, 1) 1288 self.debugViewer.showVariable(variables, True)
1289 elif scope == 0: 1289 elif scope == 0:
1290 self.debugViewer.showVariable(variables, 0) 1290 self.debugViewer.showVariable(variables, False)
1291 1291
1292 def __clientBreakConditionError(self, filename, lineno): 1292 def __clientBreakConditionError(self, filename, lineno):
1293 """ 1293 """
1294 Private method to handle a condition error of a breakpoint. 1294 Private method to handle a condition error of a breakpoint.
1295 1295

eric ide

mercurial