Documentation/Source/eric6.Debugger.DebugServer.html

changeset 5606
da305d172769
parent 5144
1ab536d25072
child 5662
2c99fa1072b6
diff -r 1950fe1a32c4 -r da305d172769 Documentation/Source/eric6.Debugger.DebugServer.html
--- a/Documentation/Source/eric6.Debugger.DebugServer.html	Sat Mar 11 19:17:59 2017 +0100
+++ b/Documentation/Source/eric6.Debugger.DebugServer.html	Sat Mar 11 19:18:57 2017 +0100
@@ -763,14 +763,14 @@
 </dd>
 </dl><a NAME="DebugServer.__remoteWatchpoint" ID="DebugServer.__remoteWatchpoint"></a>
 <h4>DebugServer.__remoteWatchpoint</h4>
-<b>__remoteWatchpoint</b>(<i>cond, set, temp=False</i>)
+<b>__remoteWatchpoint</b>(<i>cond, setWatch, temp=False</i>)
 <p>
         Private method to set or clear a watch expression.
 </p><dl>
 <dt><i>cond</i></dt>
 <dd>
 expression of the watch expression (string)
-</dd><dt><i>set</i></dt>
+</dd><dt><i>setWatch</i></dt>
 <dd>
 flag indicating setting or resetting a watch expression
             (boolean)
@@ -897,7 +897,7 @@
         Public method to process the client stop test info.
 </p><a NAME="DebugServer.clientUtTestErrored" ID="DebugServer.clientUtTestErrored"></a>
 <h4>DebugServer.clientUtTestErrored</h4>
-<b>clientUtTestErrored</b>(<i>testname, traceback, id</i>)
+<b>clientUtTestErrored</b>(<i>testname, traceback, testId</i>)
 <p>
         Public method to process the client test errored info.
 </p><dl>
@@ -907,13 +907,13 @@
 </dd><dt><i>traceback</i></dt>
 <dd>
 lines of traceback info (list of strings)
-</dd><dt><i>id</i></dt>
+</dd><dt><i>testId</i></dt>
 <dd>
 id of the test (string)
 </dd>
 </dl><a NAME="DebugServer.clientUtTestFailed" ID="DebugServer.clientUtTestFailed"></a>
 <h4>DebugServer.clientUtTestFailed</h4>
-<b>clientUtTestFailed</b>(<i>testname, traceback, id</i>)
+<b>clientUtTestFailed</b>(<i>testname, traceback, testId</i>)
 <p>
         Public method to process the client test failed info.
 </p><dl>
@@ -923,13 +923,13 @@
 </dd><dt><i>traceback</i></dt>
 <dd>
 lines of traceback info (list of strings)
-</dd><dt><i>id</i></dt>
+</dd><dt><i>testId</i></dt>
 <dd>
 id of the test (string)
 </dd>
 </dl><a NAME="DebugServer.clientUtTestFailedExpected" ID="DebugServer.clientUtTestFailedExpected"></a>
 <h4>DebugServer.clientUtTestFailedExpected</h4>
-<b>clientUtTestFailedExpected</b>(<i>testname, traceback, id</i>)
+<b>clientUtTestFailedExpected</b>(<i>testname, traceback, testId</i>)
 <p>
         Public method to process the client test failed expected info.
 </p><dl>
@@ -939,13 +939,13 @@
 </dd><dt><i>traceback</i></dt>
 <dd>
 lines of traceback info (list of strings)
-</dd><dt><i>id</i></dt>
+</dd><dt><i>testId</i></dt>
 <dd>
 id of the test (string)
 </dd>
 </dl><a NAME="DebugServer.clientUtTestSkipped" ID="DebugServer.clientUtTestSkipped"></a>
 <h4>DebugServer.clientUtTestSkipped</h4>
-<b>clientUtTestSkipped</b>(<i>testname, reason, id</i>)
+<b>clientUtTestSkipped</b>(<i>testname, reason, testId</i>)
 <p>
         Public method to process the client test skipped info.
 </p><dl>
@@ -955,20 +955,20 @@
 </dd><dt><i>reason</i></dt>
 <dd>
 reason for skipping the test (string)
-</dd><dt><i>id</i></dt>
+</dd><dt><i>testId</i></dt>
 <dd>
 id of the test (string)
 </dd>
 </dl><a NAME="DebugServer.clientUtTestSucceededUnexpected" ID="DebugServer.clientUtTestSucceededUnexpected"></a>
 <h4>DebugServer.clientUtTestSucceededUnexpected</h4>
-<b>clientUtTestSucceededUnexpected</b>(<i>testname, id</i>)
+<b>clientUtTestSucceededUnexpected</b>(<i>testname, testId</i>)
 <p>
         Public method to process the client test succeeded unexpected info.
 </p><dl>
 <dt><i>testname</i></dt>
 <dd>
 name of the test (string)
-</dd><dt><i>id</i></dt>
+</dd><dt><i>testId</i></dt>
 <dd>
 id of the test (string)
 </dd>
@@ -984,11 +984,11 @@
 </dd>
 </dl><a NAME="DebugServer.getClientCapabilities" ID="DebugServer.getClientCapabilities"></a>
 <h4>DebugServer.getClientCapabilities</h4>
-<b>getClientCapabilities</b>(<i>type</i>)
+<b>getClientCapabilities</b>(<i>clientType</i>)
 <p>
         Public method to retrieve the debug clients capabilities.
 </p><dl>
-<dt><i>type</i></dt>
+<dt><i>clientType</i></dt>
 <dd>
 debug client type (string)
 </dd>
@@ -1119,7 +1119,7 @@
         Public slot to get the banner info of the remote client.
 </p><a NAME="DebugServer.remoteBreakpoint" ID="DebugServer.remoteBreakpoint"></a>
 <h4>DebugServer.remoteBreakpoint</h4>
-<b>remoteBreakpoint</b>(<i>fn, line, set, cond=None, temp=False</i>)
+<b>remoteBreakpoint</b>(<i>fn, line, setBreakpoint, cond=None, temp=False</i>)
 <p>
         Public method to set or clear a breakpoint.
 </p><dl>
@@ -1129,9 +1129,10 @@
 </dd><dt><i>line</i></dt>
 <dd>
 linenumber of the breakpoint (int)
-</dd><dt><i>set</i></dt>
+</dd><dt><i>setBreakpoint</i></dt>
 <dd>
-flag indicating setting or resetting a breakpoint (boolean)
+flag indicating setting or resetting a breakpoint
+            (boolean)
 </dd><dt><i>cond</i></dt>
 <dd>
 condition of the breakpoint (string)
@@ -1146,27 +1147,28 @@
         Public slot to get the debug clients capabilities.
 </p><a NAME="DebugServer.remoteClientSetFilter" ID="DebugServer.remoteClientSetFilter"></a>
 <h4>DebugServer.remoteClientSetFilter</h4>
-<b>remoteClientSetFilter</b>(<i>scope, filter</i>)
+<b>remoteClientSetFilter</b>(<i>scope, filterStr</i>)
 <p>
         Public method to set a variables filter list.
 </p><dl>
 <dt><i>scope</i></dt>
 <dd>
 the scope of the variables (0 = local, 1 = global)
-</dd><dt><i>filter</i></dt>
+</dd><dt><i>filterStr</i></dt>
 <dd>
-regexp string for variable names to filter out (string)
+regexp string for variable names to filter out
+            (string)
 </dd>
 </dl><a NAME="DebugServer.remoteClientVariable" ID="DebugServer.remoteClientVariable"></a>
 <h4>DebugServer.remoteClientVariable</h4>
-<b>remoteClientVariable</b>(<i>scope, filter, var, framenr=0</i>)
+<b>remoteClientVariable</b>(<i>scope, filterList, var, framenr=0</i>)
 <p>
         Public method to request the variables of the debugged program.
 </p><dl>
 <dt><i>scope</i></dt>
 <dd>
 the scope of the variables (0 = local, 1 = global)
-</dd><dt><i>filter</i></dt>
+</dd><dt><i>filterList</i></dt>
 <dd>
 list of variable types to filter out (list of int)
 </dd><dt><i>var</i></dt>
@@ -1178,14 +1180,14 @@
 </dd>
 </dl><a NAME="DebugServer.remoteClientVariables" ID="DebugServer.remoteClientVariables"></a>
 <h4>DebugServer.remoteClientVariables</h4>
-<b>remoteClientVariables</b>(<i>scope, filter, framenr=0</i>)
+<b>remoteClientVariables</b>(<i>scope, filterList, framenr=0</i>)
 <p>
         Public method to request the variables of the debugged program.
 </p><dl>
 <dt><i>scope</i></dt>
 <dd>
 the scope of the variables (0 = local, 1 = global)
-</dd><dt><i>filter</i></dt>
+</dd><dt><i>filterList</i></dt>
 <dd>
 list of variable types to filter out (list of int)
 </dd><dt><i>framenr</i></dt>

eric ide

mercurial