diff options
Diffstat (limited to 'Doc/library/ftplib.rst')
-rw-r--r-- | Doc/library/ftplib.rst | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Doc/library/ftplib.rst b/Doc/library/ftplib.rst index 60e88cf..2c06ac7 100644 --- a/Doc/library/ftplib.rst +++ b/Doc/library/ftplib.rst @@ -46,9 +46,6 @@ The module defines the following items: specifies a timeout in seconds for the connection attempt (if is not specified, or passed as None, the global default timeout setting will be used). - .. versionchanged:: 2.6 - *timeout* was added. - .. data:: all_errors @@ -128,9 +125,6 @@ followed by ``lines`` for the text version or ``binary`` for the binary version. is used (the timeout that you passed when instantiating the class); if the object timeout is also None, the global default timeout setting will be used. - .. versionchanged:: 2.6 - *timeout* was added. - .. method:: FTP.getwelcome() @@ -203,9 +197,6 @@ followed by ``lines`` for the text version or ``binary`` for the binary version. read until EOF using its :meth:`read` method in blocks of size *blocksize* to provide the data to be stored. The *blocksize* argument defaults to 8192. - .. versionchanged:: 2.1 - default for *blocksize* added. - .. method:: FTP.storlines(command, file) |