From: Giampaolo Rodola' Date: Tue, 25 Sep 2012 19:32:46 +0000 (-0700) Subject: mention new MLSD support for ftplib in 3.3 whatsnew X-Git-Tag: v3.3.1rc1~818^2^2~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=49379c05cd11ae075acf6e84824594bad785ef32;p=python mention new MLSD support for ftplib in 3.3 whatsnew --- diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 8208f0714c..c0e0e13202 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 --