--- a/src/eric7/Documentation/Source/eric7.DebugClients.Python.AsyncFile.html Fri Oct 27 14:07:03 2023 +0200 +++ b/src/eric7/Documentation/Source/eric7.DebugClients.Python.AsyncFile.html Fri Oct 27 14:09:40 2023 +0200 @@ -117,7 +117,7 @@ </tr> <tr> <td><a href="#AsyncFile.seek">seek</a></td> -<td></td> +<td>Public method to move the filepointer.</td> </tr> <tr> <td><a href="#AsyncFile.seekable">seekable</a></td> @@ -129,7 +129,7 @@ </tr> <tr> <td><a href="#AsyncFile.truncate">truncate</a></td> -<td></td> +<td>Public method to truncate the file.</td> </tr> <tr> <td><a href="#AsyncFile.writable">writable</a></td> @@ -455,6 +455,28 @@ <h4>AsyncFile.seek</h4> <b>seek</b>(<i>offset, whence=0</i>) +<p> + Public method to move the filepointer. +</p> +<dl> + +<dt><i>offset</i> (int)</dt> +<dd> +offset to move the filepointer to +</dd> +<dt><i>whence</i> (int)</dt> +<dd> +position the offset relates to +</dd> +</dl> +<dl> + +<dt>Raises <b>OSError</b>:</dt> +<dd> +This method is not supported and always raises an + OSError. +</dd> +</dl> <a NAME="AsyncFile.seekable" ID="AsyncFile.seekable"></a> <h4>AsyncFile.seekable</h4> <b>seekable</b>(<i></i>) @@ -493,6 +515,24 @@ <h4>AsyncFile.truncate</h4> <b>truncate</b>(<i>size=-1</i>) +<p> + Public method to truncate the file. +</p> +<dl> + +<dt><i>size</i> (int)</dt> +<dd> +size to truncate to +</dd> +</dl> +<dl> + +<dt>Raises <b>OSError</b>:</dt> +<dd> +This method is not supported and always raises an + OSError. +</dd> +</dl> <a NAME="AsyncFile.writable" ID="AsyncFile.writable"></a> <h4>AsyncFile.writable</h4> <b>writable</b>(<i></i>)