diff -r 8f5d1b5e16c9 -r 0299c9ba1c6f src/eric7/Documentation/Source/eric7.DebugClients.Python.DebugUtilities.html --- a/src/eric7/Documentation/Source/eric7.DebugClients.Python.DebugUtilities.html Fri Dec 06 09:12:46 2024 +0100 +++ b/src/eric7/Documentation/Source/eric7.DebugClients.Python.DebugUtilities.html Fri Dec 06 14:16:23 2024 +0100 @@ -248,7 +248,7 @@ <hr /> <a NAME="isPythonProgram" ID="isPythonProgram"></a> <h2>isPythonProgram</h2> -<b>isPythonProgram</b>(<i>program</i>) +<b>isPythonProgram</b>(<i>program, withPath=False</i>) <p> Function to check, if the given program is a Python interpreter or program. @@ -260,6 +260,11 @@ <dd> program to be checked </dd> +<dt><i>withPath</i> (bool (optional))</dt> +<dd> +flag indicating to search the program in the executable + search path (defaults to False) +</dd> </dl> <dl> <dt>Return:</dt> @@ -333,7 +338,7 @@ <hr /> <a NAME="patchArguments" ID="patchArguments"></a> <h2>patchArguments</h2> -<b>patchArguments</b>(<i>debugClient, arguments, noRedirect=False</i>) +<b>patchArguments</b>(<i>debugClient, arguments, noRedirect=False, isPythonProg=False</i>) <p> Function to patch the arguments given to start a program in order to execute it in our debugger. @@ -349,9 +354,14 @@ <dd> list of program arguments </dd> -<dt><i>noRedirect</i> (bool)</dt> +<dt><i>noRedirect</i> (bool (optional))</dt> <dd> flag indicating to not redirect stdin and stdout + (defaults to False) +</dd> +<dt><i>isPythonProg</i> (bool (optional))</dt> +<dd> +flag indicating a Python script (defaults to False) </dd> </dl> <dl>