src/eric7/Documentation/Source/eric7.DebugClients.Python.DebugUtilities.html

branch
eric7
changeset 10479
856476537696
parent 10478
de9106c55c3d
child 11088
0299c9ba1c6f
diff -r de9106c55c3d -r 856476537696 src/eric7/Documentation/Source/eric7.DebugClients.Python.DebugUtilities.html
--- a/src/eric7/Documentation/Source/eric7.DebugClients.Python.DebugUtilities.html	Thu Jan 04 17:16:15 2024 +0100
+++ b/src/eric7/Documentation/Source/eric7.DebugClients.Python.DebugUtilities.html	Thu Jan 04 18:02:25 2024 +0100
@@ -7,24 +7,24 @@
 <body>
 <a NAME="top" ID="top"></a>
 <h1>eric7.DebugClients.Python.DebugUtilities</h1>
-
 <p>
 Module implementing utilities functions for the debug client.
 </p>
+
 <h3>Global Attributes</h3>
-
 <table>
-<tr><td>ArgInfo</td></tr><tr><td>PYTHON_NAMES</td></tr><tr><td>mod_dict</td></tr>
+<tr><td>ArgInfo</td></tr>
+<tr><td>PYTHON_NAMES</td></tr>
+<tr><td>mod_dict</td></tr>
 </table>
+
 <h3>Classes</h3>
-
 <table>
 <tr><td>None</td></tr>
 </table>
+
 <h3>Functions</h3>
-
 <table>
-
 <tr>
 <td><a href="#_getfullargs">_getfullargs</a></td>
 <td>Protected function to get information about the arguments accepted by a code object.</td>
@@ -78,16 +78,17 @@
 <td>Function to prepare a string of arguments for Windows platform.</td>
 </tr>
 </table>
+
 <hr />
 <hr />
 <a NAME="_getfullargs" ID="_getfullargs"></a>
 <h2>_getfullargs</h2>
 <b>_getfullargs</b>(<i>co</i>)
-
 <p>
     Protected function to get information about the arguments accepted
     by a code object.
 </p>
+
 <dl>
 
 <dt><i>co</i> (code)</dt>
@@ -122,11 +123,11 @@
 <a NAME="formatargvalues" ID="formatargvalues"></a>
 <h2>formatargvalues</h2>
 <b>formatargvalues</b>(<i>args, varargs, varkw, localsDict, formatarg=str, formatvarargs=lambda name: "*" + name, formatvarkw=lambda name: "**" + name, formatvalue=lambda value: "=" + repr(value), </i>)
-
 <p>
     Function to format an argument spec from the 4 values returned
     by getargvalues.
 </p>
+
 <dl>
 
 <dt><i>args</i> (list of str)</dt>
@@ -180,11 +181,11 @@
 <a NAME="getargvalues" ID="getargvalues"></a>
 <h2>getargvalues</h2>
 <b>getargvalues</b>(<i>frame</i>)
-
 <p>
     Function to get information about arguments passed into a
     particular frame.
 </p>
+
 <dl>
 
 <dt><i>frame</i> (frame)</dt>
@@ -219,10 +220,10 @@
 <a NAME="isExecutable" ID="isExecutable"></a>
 <h2>isExecutable</h2>
 <b>isExecutable</b>(<i>program</i>)
-
 <p>
     Function to check, if the given program is executable.
 </p>
+
 <dl>
 
 <dt><i>program</i> (str)</dt>
@@ -248,11 +249,11 @@
 <a NAME="isPythonProgram" ID="isPythonProgram"></a>
 <h2>isPythonProgram</h2>
 <b>isPythonProgram</b>(<i>program</i>)
-
 <p>
     Function to check, if the given program is a Python interpreter or
     program.
 </p>
+
 <dl>
 
 <dt><i>program</i> (str)</dt>
@@ -278,10 +279,10 @@
 <a NAME="isWindowsPlatform" ID="isWindowsPlatform"></a>
 <h2>isWindowsPlatform</h2>
 <b>isWindowsPlatform</b>(<i></i>)
-
 <p>
     Function to check, if this is a Windows platform.
 </p>
+
 <dl>
 <dt>Return:</dt>
 <dd>
@@ -300,10 +301,10 @@
 <a NAME="patchArgumentStringWindows" ID="patchArgumentStringWindows"></a>
 <h2>patchArgumentStringWindows</h2>
 <b>patchArgumentStringWindows</b>(<i>debugClient, argStr</i>)
-
 <p>
     Function to patch an argument string for Windows.
 </p>
+
 <dl>
 
 <dt><i>debugClient</i> (DebugClient)</dt>
@@ -333,11 +334,11 @@
 <a NAME="patchArguments" ID="patchArguments"></a>
 <h2>patchArguments</h2>
 <b>patchArguments</b>(<i>debugClient, arguments, noRedirect=False</i>)
-
 <p>
     Function to patch the arguments given to start a program in order to
     execute it in our debugger.
 </p>
+
 <dl>
 
 <dt><i>debugClient</i> (DebugClient)</dt>
@@ -371,11 +372,11 @@
 <a NAME="prepareJsonCommand" ID="prepareJsonCommand"></a>
 <h2>prepareJsonCommand</h2>
 <b>prepareJsonCommand</b>(<i>method, params</i>)
-
 <p>
     Function to prepare a single command or response for transmission to
     the IDE.
 </p>
+
 <dl>
 
 <dt><i>method</i> (str)</dt>
@@ -405,10 +406,10 @@
 <a NAME="quoteArgs" ID="quoteArgs"></a>
 <h2>quoteArgs</h2>
 <b>quoteArgs</b>(<i>args</i>)
-
 <p>
     Function to quote the given list of arguments.
 </p>
+
 <dl>
 
 <dt><i>args</i> (list of str)</dt>
@@ -434,10 +435,10 @@
 <a NAME="removeQuotesFromArgs" ID="removeQuotesFromArgs"></a>
 <h2>removeQuotesFromArgs</h2>
 <b>removeQuotesFromArgs</b>(<i>args</i>)
-
 <p>
     Function to remove quotes from the arguments list.
 </p>
+
 <dl>
 
 <dt><i>args</i> (list of str)</dt>
@@ -463,10 +464,10 @@
 <a NAME="startsWithShebang" ID="startsWithShebang"></a>
 <h2>startsWithShebang</h2>
 <b>startsWithShebang</b>(<i>program</i>)
-
 <p>
     Function to check, if the given program start with a Shebang line.
 </p>
+
 <dl>
 
 <dt><i>program</i> (str)</dt>
@@ -492,10 +493,10 @@
 <a NAME="stringToArgumentsWindows" ID="stringToArgumentsWindows"></a>
 <h2>stringToArgumentsWindows</h2>
 <b>stringToArgumentsWindows</b>(<i>args</i>)
-
 <p>
     Function to prepare a string of arguments for Windows platform.
 </p>
+
 <dl>
 
 <dt><i>args</i> (str)</dt>
@@ -525,4 +526,4 @@
 </dl>
 <div align="right"><a href="#top">Up</a></div>
 <hr />
-</body></html>
\ No newline at end of file
+</body></html>

eric ide

mercurial