323 @param scope the scope of the variables (0 = local, 1 = global) |
323 @param scope the scope of the variables (0 = local, 1 = global) |
324 @param filter regexp string for variable names to filter out (string) |
324 @param filter regexp string for variable names to filter out (string) |
325 """ |
325 """ |
326 return |
326 return |
327 |
327 |
|
328 def setCallTraceEnabled(self, on): |
|
329 """ |
|
330 Public method to set the call trace state. |
|
331 |
|
332 @param on flag indicating to enable the call trace function (boolean) |
|
333 """ |
|
334 return |
|
335 |
328 def remoteEval(self, arg): |
336 def remoteEval(self, arg): |
329 """ |
337 """ |
330 Public method to evaluate arg in the current context of the debugged program. |
338 Public method to evaluate arg in the current context of the debugged program. |
331 |
339 |
332 @param arg the arguments to evaluate (string) |
340 @param arg the arguments to evaluate (string) |