diff -r ff28050f5dec -r 4a017fdf316f src/eric7/Documentation/Source/eric7.DebugClients.Python.DebugClientBase.html --- a/src/eric7/Documentation/Source/eric7.DebugClients.Python.DebugClientBase.html Fri Nov 17 17:53:14 2023 +0100 +++ b/src/eric7/Documentation/Source/eric7.DebugClients.Python.DebugClientBase.html Sat Nov 18 15:18:17 2023 +0100 @@ -967,7 +967,7 @@ </dl> <a NAME="DebugClientBase.sendPassiveStartup" ID="DebugClientBase.sendPassiveStartup"></a> <h4>DebugClientBase.sendPassiveStartup</h4> -<b>sendPassiveStartup</b>(<i>filename, exceptions</i>) +<b>sendPassiveStartup</b>(<i>filename, reportAllExceptions</i>) <p> Public method to send the passive start information. @@ -978,9 +978,9 @@ <dd> name of the script </dd> -<dt><i>exceptions</i> (bool)</dt> +<dt><i>reportAllExceptions</i> (bool)</dt> <dd> -flag to enable exception reporting of the IDE +flag to enable reporting of all exceptions </dd> </dl> <a NAME="DebugClientBase.sendResponseLine" ID="DebugClientBase.sendResponseLine"></a> @@ -1089,7 +1089,7 @@ </dl> <a NAME="DebugClientBase.startDebugger" ID="DebugClientBase.startDebugger"></a> <h4>DebugClientBase.startDebugger</h4> -<b>startDebugger</b>(<i>filename=None, host=None, port=None, enableTrace=True, exceptions=True, tracePython=False, redirect=True, passive=True, multiprocessSupport=False, </i>) +<b>startDebugger</b>(<i>filename=None, host=None, port=None, enableTrace=True, reportAllExceptions=False, tracePython=False, redirect=True, passive=True, multiprocessSupport=False, </i>) <p> Public method used to start the remote debugger. @@ -1112,9 +1112,10 @@ <dd> flag to enable the tracing function </dd> -<dt><i>exceptions</i> (bool)</dt> +<dt><i>reportAllExceptions</i> (bool)</dt> <dd> -flag to enable exception reporting of the IDE +flag indicating to report all exceptions + instead of unhandled exceptions only </dd> <dt><i>tracePython</i> (bool)</dt> <dd> @@ -1137,7 +1138,7 @@ </dl> <a NAME="DebugClientBase.startProgInDebugger" ID="DebugClientBase.startProgInDebugger"></a> <h4>DebugClientBase.startProgInDebugger</h4> -<b>startProgInDebugger</b>(<i>progargs, wd="", host=None, port=None, exceptions=True, tracePython=False, redirect=True, passive=True, multiprocessSupport=False, callTraceOptimization=False, codeStr="", scriptModule="", </i>) +<b>startProgInDebugger</b>(<i>progargs, wd="", host=None, port=None, tracePython=False, redirect=True, passive=True, multiprocessSupport=False, reportAllExceptions=False, callTraceOptimization=False, codeStr="", scriptModule="", </i>) <p> Public method used to start the remote debugger. @@ -1160,10 +1161,6 @@ <dd> portnumber of the debug server </dd> -<dt><i>exceptions</i> (bool)</dt> -<dd> -flag to enable exception reporting of the IDE -</dd> <dt><i>tracePython</i> (bool)</dt> <dd> flag to enable tracing into the Python library @@ -1182,6 +1179,11 @@ flag indicating to enable multiprocess debugging support </dd> +<dt><i>reportAllExceptions</i> (bool)</dt> +<dd> +flag indicating to report all exceptions instead + of unhandled exceptions only +</dd> <dt><i>callTraceOptimization</i> (bool)</dt> <dd> flag indicating to speed up function/method