diff options
author | Giampaolo Rodola' <g.rodola@gmail.com> | 2012-09-25 19:32:46 (GMT) |
---|---|---|
committer | Giampaolo Rodola' <g.rodola@gmail.com> | 2012-09-25 19:32:46 (GMT) |
commit | 49379c05cd11ae075acf6e84824594bad785ef32 (patch) | |
tree | 6bb037e23267bbf24842636c2f1f8d8ef845171b | |
parent | 15c88490011743585134436c7ca0f5186e5dd2a3 (diff) | |
download | cpython-49379c05cd11ae075acf6e84824594bad785ef32.zip cpython-49379c05cd11ae075acf6e84824594bad785ef32.tar.gz cpython-49379c05cd11ae075acf6e84824594bad785ef32.tar.bz2 |
mention new MLSD support for ftplib in 3.3 whatsnew
-rw-r--r-- | Doc/whatsnew/3.3.rst | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 8208f07..c0e0e13 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -1228,13 +1228,18 @@ API changes ftplib ------ -The :class:`~ftplib.FTP_TLS` class now provides a new -:func:`~ftplib.FTP_TLS.ccc` function to revert control channel back to -plaintext. This can be useful to take advantage of firewalls that know how to -handle NAT with non-secure FTP without opening fixed ports. +* The :class:`~ftplib.FTP_TLS` class now provides a new + :func:`~ftplib.FTP_TLS.ccc` function to revert control channel back to + plaintext. This can be useful to take advantage of firewalls that know how to + handle NAT with non-secure FTP without opening fixed ports. -(Contributed by Giampaolo Rodolà in :issue:`12139`) + (Contributed by Giampaolo Rodolà in :issue:`12139`) +* Added :meth:`ftplib.FTP.mlsd` method which provides a parsable directory + listing format and deprecates :meth:`ftplib.FTP.nlst` and + :meth:`ftplib.FTP.dir`. + + (Contributed by Giampaolo Rodolà in :issue:`11072`) gc -- |