[Python-checkins] cpython: Issue #23883: News updates for __all__ attributes
martin.panter
python-checkins at python.org
Sun Jun 5 22:30:51 EDT 2016
https://hg.python.org/cpython/rev/a36c7f87eba9
changeset: 101766:a36c7f87eba9
user: Martin Panter <vadmium+py at gmail.com>
date: Mon Jun 06 02:09:08 2016 +0000
summary:
Issue #23883: News updates for __all__ attributes
files:
Doc/whatsnew/3.6.rst | 8 +++++---
Misc/NEWS | 4 ++++
2 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -609,10 +609,12 @@
:exc:`PendingDeprecationWarning`.
* The following modules have had missing APIs added to their :attr:`__all__`
- attributes to match the documented APIs: :mod:`calendar`, :mod:`csv`,
+ attributes to match the documented APIs:
+ :mod:`calendar`, :mod:`cgi`, :mod:`csv`,
:mod:`~xml.etree.ElementTree`, :mod:`enum`,
- :mod:`fileinput`, :mod:`ftplib`, :mod:`logging`,
- :mod:`optparse`, :mod:`subprocess`, :mod:`tarfile`, :mod:`threading` and
+ :mod:`fileinput`, :mod:`ftplib`, :mod:`logging`, :mod:`mailbox`,
+ :mod:`mimetypes`, :mod:`optparse`, :mod:`plistlib`, :mod:`smtpd`,
+ :mod:`subprocess`, :mod:`tarfile`, :mod:`threading` and
:mod:`wave`. This means they will export new symbols when ``import *``
is used. See :issue:`23883`.
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,10 @@
Library
-------
+- Issue #23883: Added missing APIs to __all__ to match the documented APIs
+ for the following modules: cgi, mailbox, mimetypes, plistlib and smtpd.
+ Patches by Jacek Kołodziej.
+
- Issue #27164: In the zlib module, allow decompressing raw Deflate streams
with a predefined zdict. Based on patch by Xiang Zhang.
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list