diff -r bc64243b7672 -r 1ab536d25072 Documentation/Source/eric6.DebugClients.Python3.AsyncFile.html --- a/Documentation/Source/eric6.DebugClients.Python3.AsyncFile.html Sun Sep 04 13:51:33 2016 +0200 +++ b/Documentation/Source/eric6.DebugClients.Python3.AsyncFile.html Sun Sep 04 13:58:11 2016 +0200 @@ -121,6 +121,9 @@ <td><a href="#AsyncFile.write">write</a></td> <td>Public method to write a string to the file.</td> </tr><tr> +<td><a href="#AsyncFile.write_p">write_p</a></td> +<td>Public method to write a string to the file.</td> +</tr><tr> <td><a href="#AsyncFile.writelines">writelines</a></td> <td>Public method to write a list of strings to the file.</td> </tr> @@ -381,7 +384,17 @@ </p><dl> <dt><i>s</i></dt> <dd> -bytes to be written (string) +text to be written (string) +</dd> +</dl><a NAME="AsyncFile.write_p" ID="AsyncFile.write_p"></a> +<h4>AsyncFile.write_p</h4> +<b>write_p</b>(<i>s</i>) +<p> + Public method to write a string to the file. +</p><dl> +<dt><i>s</i></dt> +<dd> +text to be written (string) </dd> </dl><dl> <dt>Raises <b>socket.error</b>:</dt> @@ -390,13 +403,13 @@ </dd> </dl><a NAME="AsyncFile.writelines" ID="AsyncFile.writelines"></a> <h4>AsyncFile.writelines</h4> -<b>writelines</b>(<i>list</i>) +<b>writelines</b>(<i>lines</i>) <p> Public method to write a list of strings to the file. </p><dl> -<dt><i>list</i></dt> +<dt><i>lines</i></dt> <dd> -the list to be written (list of string) +list of texts to be written (list of string) </dd> </dl> <div align="right"><a href="#top">Up</a></div>