eric6/Debugger/DebugServer.py

changeset 7862
817ef8e0fa66
parent 7780
41420f82c0ac
child 7863
6725d2549801
equal deleted inserted replaced
7861:3d48094ba8e1 7862:817ef8e0fa66
1240 def remoteClientVariables(self, scope, filterList, framenr=0): 1240 def remoteClientVariables(self, scope, filterList, framenr=0):
1241 """ 1241 """
1242 Public method to request the variables of the debugged program. 1242 Public method to request the variables of the debugged program.
1243 1243
1244 @param scope the scope of the variables (0 = local, 1 = global) 1244 @param scope the scope of the variables (0 = local, 1 = global)
1245 @param filterList list of variable types to filter out (list of int) 1245 @type int
1246 @param framenr framenumber of the variables to retrieve (int) 1246 @param filterList list of variable types to filter out
1247 @type list of str
1248 @param framenr framenumber of the variables to retrieve
1249 @type int
1247 """ 1250 """
1248 self.debuggerInterface.remoteClientVariables( 1251 self.debuggerInterface.remoteClientVariables(
1249 scope, filterList, framenr, self.__maxVariableSize) 1252 scope, filterList, framenr, self.__maxVariableSize)
1250 1253
1251 def remoteClientVariable(self, scope, filterList, var, framenr=0): 1254 def remoteClientVariable(self, scope, filterList, var, framenr=0):
1252 """ 1255 """
1253 Public method to request the variables of the debugged program. 1256 Public method to request the variables of the debugged program.
1254 1257
1255 @param scope the scope of the variables (0 = local, 1 = global) 1258 @param scope the scope of the variables (0 = local, 1 = global)
1256 @param filterList list of variable types to filter out (list of int) 1259 @type int
1257 @param var list encoded name of variable to retrieve (string) 1260 @param filterList list of variable types to filter out
1258 @param framenr framenumber of the variables to retrieve (int) 1261 @type list of str
1262 @param var list encoded name of variable to retrieve
1263 @type str
1264 @param framenr framenumber of the variables to retrieve
1265 @type int
1259 """ 1266 """
1260 self.debuggerInterface.remoteClientVariable( 1267 self.debuggerInterface.remoteClientVariable(
1261 scope, filterList, var, framenr, self.__maxVariableSize) 1268 scope, filterList, var, framenr, self.__maxVariableSize)
1262 1269
1263 def remoteClientDisassembly(self): 1270 def remoteClientDisassembly(self):

eric ide

mercurial