diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2014-11-01 08:45:57 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2014-11-01 08:45:57 (GMT) |
commit | 8f791d358bb1e26144c61a938628731e7e05e596 (patch) | |
tree | 34dbf14a0395cec72b5146da4327795a49fd9144 /Doc | |
parent | 8906f14a68d6ce19923e29d9e433f44d440324b4 (diff) | |
download | cpython-8f791d358bb1e26144c61a938628731e7e05e596.zip cpython-8f791d358bb1e26144c61a938628731e7e05e596.tar.gz cpython-8f791d358bb1e26144c61a938628731e7e05e596.tar.bz2 |
Issue #6623: Remove deprecated Netrc class in the ftplib module.
Patch by Matt Chaput.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.5.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 319284a..0bd36a5 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -369,10 +369,18 @@ Deprecated features Removed ======= +API and Feature Removals +------------------------ + +The following obsolete and previously deprecated APIs and features have been +removed: + * The ``__version__`` attribute has been dropped from the email package. The email code hasn't been shipped separately from the stdlib for a long time, and the ``__version__`` string was not updated in the last few releases. +* The internal ``Netrc`` class in the :mod:`ftplib` module was deprecated in + 3.4, and has now been removed. (Contributed by Matt Chaput in :issue:`6623`.) Porting to Python 3.5 ===================== |