diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-12-20 18:10:43 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-12-20 18:10:43 (GMT) |
commit | 6adb4543fca69573640052bb83c0a5e4527c49a7 (patch) | |
tree | 9f0264ff7046e78bbc8dcef960771cdd9d547260 /Doc | |
parent | 32e57ef0231cce4c9c18b8a6f6edbe4417e2e8da (diff) | |
download | cpython-6adb4543fca69573640052bb83c0a5e4527c49a7.zip cpython-6adb4543fca69573640052bb83c0a5e4527c49a7.tar.gz cpython-6adb4543fca69573640052bb83c0a5e4527c49a7.tar.bz2 |
Add email package to whatsnew list of significantly improved stdlib modules.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 5a4fa86..748fb73 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -115,6 +115,9 @@ Significantly Improved Library Modules: * TLSv1.1 and TLSv1.2 support for :mod:`ssl`. * :mod:`multiprocessing` now has option to avoid using :func:`os.fork` on Unix (:issue:`8713`). +* :mod:`email` has a new submodule, :mod:`~email.contentmanager`, and + a new :mod:`~email.message.Message` subclass + (:class:`~email.contentmanager.EmailMessage`) that simplify MIME handling. CPython implementation improvements: |