620 @param filter regexp string for variable names to filter out (string) |
620 @param filter regexp string for variable names to filter out (string) |
621 """ |
621 """ |
622 self.__sendCommand('{0}{1:d}, "{2}"\n'.format( |
622 self.__sendCommand('{0}{1:d}, "{2}"\n'.format( |
623 DebugProtocol.RequestSetFilter, scope, filter)) |
623 DebugProtocol.RequestSetFilter, scope, filter)) |
624 |
624 |
|
625 def setCallTraceEnabled(self, on): |
|
626 """ |
|
627 Public method to set the call trace state. |
|
628 |
|
629 @param on flag indicating to enable the call trace function (boolean) |
|
630 """ |
|
631 return |
|
632 |
625 def remoteEval(self, arg): |
633 def remoteEval(self, arg): |
626 """ |
634 """ |
627 Public method to evaluate arg in the current context of the debugged program. |
635 Public method to evaluate arg in the current context of the debugged program. |
628 |
636 |
629 @param arg the arguments to evaluate (string) |
637 @param arg the arguments to evaluate (string) |