diff options
Diffstat (limited to 'Doc/library/ftplib.rst')
-rw-r--r-- | Doc/library/ftplib.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/library/ftplib.rst b/Doc/library/ftplib.rst index 4ce8893..41bdcd8 100644 --- a/Doc/library/ftplib.rst +++ b/Doc/library/ftplib.rst @@ -187,9 +187,8 @@ followed by ``lines`` for the text version or ``binary`` for the binary version. .. method:: FTP.set_pasv(boolean) - Enable "passive" mode if *boolean* is true, other disable passive mode. (In - Python 2.0 and before, passive mode was off by default; in Python 2.1 and later, - it is on by default.) + Enable "passive" mode if *boolean* is true, other disable passive mode. + Passive mode is on by default. .. method:: FTP.storbinary(command, file[, blocksize, callback]) |