[Python-checkins] cpython: mention new MLSD support for ftplib in 3.3 whatsnew

giampaolo.rodola python-checkins at python.org
Tue Sep 25 21:35:00 CEST 2012


http://hg.python.org/cpython/rev/39a98b3f4984
changeset:   79188:39a98b3f4984
parent:      79180:2012e5e10147
user:        Giampaolo Rodola' <g.rodola at gmail.com>
date:        Tue Sep 25 12:32:46 2012 -0700
summary:
  mention new MLSD support for ftplib in 3.3 whatsnew

files:
  Doc/whatsnew/3.3.rst |  19 ++++++++++++-------
  1 files changed, 12 insertions(+), 7 deletions(-)


diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -1228,13 +1228,18 @@
 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.
-
-(Contributed by Giampaolo Rodolà in :issue:`12139`)
-
+* 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`)
+
+* 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
 --

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list