--- a/eric6/Documentation/Source/eric6.DebugClients.Python.DebugClientBase.html Wed Apr 29 18:35:30 2020 +0200 +++ b/eric6/Documentation/Source/eric6.DebugClients.Python.DebugClientBase.html Wed Apr 29 18:36:16 2020 +0200 @@ -53,11 +53,11 @@ </tr> <tr> <td><a href="#DebugClientInput">DebugClientInput</a></td> -<td>Replacement for the standard input builtin.</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.</td> +<td>Replacement for the standard raw_input() builtin (Python 2) and the standard input() builtin (Python 3).</td> </tr> <tr> <td><a href="#DebugClientSetRecursionLimit">DebugClientSetRecursionLimit</a></td> @@ -1261,23 +1261,19 @@ <hr /> <a NAME="DebugClientInput" ID="DebugClientInput"></a> <h2>DebugClientInput</h2> -<b>DebugClientInput</b>(<i>prompt="", echo=True</i>) +<b>DebugClientInput</b>(<i>prompt=""</i>) <p> - Replacement for the standard input builtin. + Replacement for the standard input() builtin (Python 2). </p> <p> This function works with the split debugger. </p> <dl> -<dt><i>prompt</i></dt> +<dt><i>prompt</i> (str)</dt> <dd> -prompt to be shown (string) -</dd> -<dt><i>echo</i></dt> -<dd> -flag indicating to echo the output (boolean) +prompt to be shown </dd> </dl> <dl> @@ -1286,6 +1282,12 @@ result of the input() call </dd> </dl> +<dl> +<dt>Return Type:</dt> +<dd> +str +</dd> +</dl> <div align="right"><a href="#top">Up</a></div> <hr /> <hr /> @@ -1294,26 +1296,33 @@ <b>DebugClientRawInput</b>(<i>prompt="", echo=True</i>) <p> - Replacement for the standard raw_input builtin. + 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></dt> +<dt><i>prompt</i> (str)</dt> <dd> -prompt to be shown. (string) +prompt to be shown </dd> -<dt><i>echo</i></dt> +<dt><i>echo</i> (bool)</dt> <dd> -flag indicating echoing of the input (boolean) +flag indicating echoing of the input </dd> </dl> <dl> <dt>Returns:</dt> <dd> -result of the raw_input() call +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>