summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.6.rst
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-06 02:09:08 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-06-06 02:09:08 (GMT)
commit0d3535a6aba530db718ee09fa0cc266037f80178 (patch)
treec3f8fc9ba2c15157de35cc3afcb63142aaf15d3a /Doc/whatsnew/3.6.rst
parent380ef012998e5951333e68f6130aba8aba9ee721 (diff)
downloadcpython-0d3535a6aba530db718ee09fa0cc266037f80178.zip
cpython-0d3535a6aba530db718ee09fa0cc266037f80178.tar.gz
cpython-0d3535a6aba530db718ee09fa0cc266037f80178.tar.bz2
Issue #23883: News updates for __all__ attributes
Diffstat (limited to 'Doc/whatsnew/3.6.rst')
-rw-r--r--Doc/whatsnew/3.6.rst8
1 files changed, 5 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
index adbde91..f438f0b 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -609,10 +609,12 @@ Changes in the Python API
: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`.