summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorGiampaolo Rodolà <g.rodola@gmail.com>2010-05-10 14:53:29 (GMT)
committerGiampaolo Rodolà <g.rodola@gmail.com>2010-05-10 14:53:29 (GMT)
commitbd576b75b7bed253b7bf4af5a967e3ee4dc1af8a (patch)
treefe5924f78b230670672d6097bc3be6724fed9b27 /Doc/whatsnew
parentf95a1b3c53bdd678b64aa608d4375660033460c3 (diff)
downloadcpython-bd576b75b7bed253b7bf4af5a967e3ee4dc1af8a.zip
cpython-bd576b75b7bed253b7bf4af5a967e3ee4dc1af8a.tar.gz
cpython-bd576b75b7bed253b7bf4af5a967e3ee4dc1af8a.tar.bz2
Fix issue #4972: adds ftplib.FTP context manager protocol
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.2.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst
index 877283b..e61ad44 100644
--- a/Doc/whatsnew/3.2.rst
+++ b/Doc/whatsnew/3.2.rst
@@ -66,6 +66,9 @@ Some smaller changes made to the core Python language are:
New, Improved, and Deprecated Modules
=====================================
+* The :class:`ftplib.FTP` class now supports the context manager protocol
+ (Contributed by Tarek Ziadé and Giampaolo Rodolà; :issue:`4972`.)
+
* The previously deprecated :func:`string.maketrans` function has been
removed in favor of the static methods, :meth:`bytes.maketrans` and
:meth:`bytearray.maketrans`. This change solves the confusion around which