--- a/Debugger/DebuggerInterfaceNone.py Tue Mar 07 18:46:09 2017 +0100 +++ b/Debugger/DebuggerInterfaceNone.py Tue Mar 07 18:53:18 2017 +0100 @@ -210,13 +210,14 @@ """ return - def remoteBreakpoint(self, fn, line, set, cond=None, temp=False): + def remoteBreakpoint(self, fn, line, setBreakpoint, cond=None, temp=False): """ Public method to set or clear a breakpoint. @param fn filename the breakpoint belongs to (string) @param line linenumber of the breakpoint (int) - @param set flag indicating setting or resetting a breakpoint (boolean) + @param setBreakpoint flag indicating setting or resetting a + breakpoint (boolean) @param cond condition of the breakpoint (string) @param temp flag indicating a temporary breakpoint (boolean) """ @@ -243,12 +244,12 @@ """ return - def remoteWatchpoint(self, cond, set, temp=False): + def remoteWatchpoint(self, cond, setWatch, temp=False): """ Public method to set or clear a watch expression. @param cond expression of the watch expression (string) - @param set flag indicating setting or resetting a watch expression + @param setWatch flag indicating setting or resetting a watch expression (boolean) @param temp flag indicating a temporary watch expression (boolean) """ @@ -296,33 +297,34 @@ """ return - def remoteClientVariables(self, scope, filter, framenr=0): + def remoteClientVariables(self, scope, filterList, framenr=0): """ Public method to request the variables of the debugged program. @param scope the scope of the variables (0 = local, 1 = global) - @param filter list of variable types to filter out (list of int) + @param filterList list of variable types to filter out (list of int) @param framenr framenumber of the variables to retrieve (int) """ return - def remoteClientVariable(self, scope, filter, var, framenr=0): + def remoteClientVariable(self, scope, filterList, var, framenr=0): """ Public method to request the variables of the debugged program. @param scope the scope of the variables (0 = local, 1 = global) - @param filter list of variable types to filter out (list of int) + @param filterList list of variable types to filter out (list of int) @param var list encoded name of variable to retrieve (string) @param framenr framenumber of the variables to retrieve (int) """ return - def remoteClientSetFilter(self, scope, filter): + def remoteClientSetFilter(self, scope, filterStr): """ Public method to set a variables filter list. @param scope the scope of the variables (0 = local, 1 = global) - @param filter regexp string for variable names to filter out (string) + @param filterStr regexp string for variable names to filter out + (string) """ return