eric6/Documentation/Source/eric6.DebugClients.Python.DebugClientBase.html

changeset 7641
21ea4fd50b0a
parent 7635
0cdead130a81
child 7707
6abcf4275d0e
diff -r f9bb7c8c60d8 -r 21ea4fd50b0a eric6/Documentation/Source/eric6.DebugClients.Python.DebugClientBase.html
--- a/eric6/Documentation/Source/eric6.DebugClients.Python.DebugClientBase.html	Fri Jul 03 17:37:11 2020 +0200
+++ b/eric6/Documentation/Source/eric6.DebugClients.Python.DebugClientBase.html	Sat Jul 04 11:34:37 2020 +0200
@@ -53,11 +53,7 @@
 </tr>
 <tr>
 <td><a href="#DebugClientInput">DebugClientInput</a></td>
-<td>Replacement for the standard input() builtin (Python 2).</td>
-</tr>
-<tr>
-<td><a href="#DebugClientRawInput">DebugClientRawInput</a></td>
-<td>Replacement for the standard raw_input() builtin (Python 2) and the standard input() builtin (Python 3).</td>
+<td>Replacement for the standard input() builtin.</td>
 </tr>
 <tr>
 <td><a href="#DebugClientSetRecursionLimit">DebugClientSetRecursionLimit</a></td>
@@ -220,7 +216,7 @@
 </tr>
 <tr>
 <td><a href="#DebugClientBase.input">input</a></td>
-<td>Public method to implement input() (Python 2) using the event loop.</td>
+<td>Public method to implement input() using the event loop.</td>
 </tr>
 <tr>
 <td><a href="#DebugClientBase.main">main</a></td>
@@ -231,10 +227,6 @@
 <td>Public method to tell the debugger that the program has terminated.</td>
 </tr>
 <tr>
-<td><a href="#DebugClientBase.raw_input">raw_input</a></td>
-<td>Public method to implement raw_input() / input() using the event loop.</td>
-</tr>
-<tr>
 <td><a href="#DebugClientBase.readReady">readReady</a></td>
 <td>Public method called when there is data ready to be read.</td>
 </tr>
@@ -835,10 +827,10 @@
 </dl>
 <a NAME="DebugClientBase.input" ID="DebugClientBase.input"></a>
 <h4>DebugClientBase.input</h4>
-<b>input</b>(<i>prompt</i>)
+<b>input</b>(<i>prompt, echo=True</i>)
 
 <p>
-        Public method to implement input() (Python 2) using the event loop.
+        Public method to implement input() using the event loop.
 </p>
 <dl>
 
@@ -846,11 +838,15 @@
 <dd>
 the prompt to be shown (string)
 </dd>
+<dt><i>echo</i></dt>
+<dd>
+Flag indicating echoing of the input (boolean)
+</dd>
 </dl>
 <dl>
 <dt>Returns:</dt>
 <dd>
-the entered string evaluated as a Python expresion
+the entered string
 </dd>
 </dl>
 <a NAME="DebugClientBase.main" ID="DebugClientBase.main"></a>
@@ -878,30 +874,6 @@
 status message
 </dd>
 </dl>
-<a NAME="DebugClientBase.raw_input" ID="DebugClientBase.raw_input"></a>
-<h4>DebugClientBase.raw_input</h4>
-<b>raw_input</b>(<i>prompt, echo</i>)
-
-<p>
-        Public method to implement raw_input() / input() using the event loop.
-</p>
-<dl>
-
-<dt><i>prompt</i></dt>
-<dd>
-the prompt to be shown (string)
-</dd>
-<dt><i>echo</i></dt>
-<dd>
-Flag indicating echoing of the input (boolean)
-</dd>
-</dl>
-<dl>
-<dt>Returns:</dt>
-<dd>
-the entered string
-</dd>
-</dl>
 <a NAME="DebugClientBase.readReady" ID="DebugClientBase.readReady"></a>
 <h4>DebugClientBase.readReady</h4>
 <b>readReady</b>(<i>stream</i>)
@@ -1264,7 +1236,7 @@
 <b>DebugClientInput</b>(<i>prompt=""</i>)
 
 <p>
-    Replacement for the standard input() builtin (Python 2).
+    Replacement for the standard input() builtin.
 </p>
 <p>
     This function works with the split debugger.
@@ -1291,43 +1263,6 @@
 <div align="right"><a href="#top">Up</a></div>
 <hr />
 <hr />
-<a NAME="DebugClientRawInput" ID="DebugClientRawInput"></a>
-<h2>DebugClientRawInput</h2>
-<b>DebugClientRawInput</b>(<i>prompt="", echo=True</i>)
-
-<p>
-    Replacement for the standard raw_input() builtin (Python 2) and
-    the standard input() builtin (Python 3).
-</p>
-<p>
-    This function works with the split debugger.
-</p>
-<dl>
-
-<dt><i>prompt</i> (str)</dt>
-<dd>
-prompt to be shown
-</dd>
-<dt><i>echo</i> (bool)</dt>
-<dd>
-flag indicating echoing of the input
-</dd>
-</dl>
-<dl>
-<dt>Returns:</dt>
-<dd>
-result of the raw_input()/input() call
-</dd>
-</dl>
-<dl>
-<dt>Return Type:</dt>
-<dd>
-str
-</dd>
-</dl>
-<div align="right"><a href="#top">Up</a></div>
-<hr />
-<hr />
 <a NAME="DebugClientSetRecursionLimit" ID="DebugClientSetRecursionLimit"></a>
 <h2>DebugClientSetRecursionLimit</h2>
 <b>DebugClientSetRecursionLimit</b>(<i>limit</i>)

eric ide

mercurial