]> granicus.if.org Git - python/commitdiff
Issue #23883: News updates for __all__ attributes
authorMartin Panter <vadmium+py@gmail.com>
Mon, 6 Jun 2016 02:09:08 +0000 (02:09 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Mon, 6 Jun 2016 02:09:08 +0000 (02:09 +0000)
Doc/whatsnew/3.6.rst
Misc/NEWS

index adbde91e9d75882e1dbfb23b110b6ac4f662bfcb..f438f0b44f9fc3d56723aaa0b26c6ded938ef83d 100644 (file)
@@ -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`.
 
index 8137b16c59a9fb0bad94000d032778c90d5617dd..d50aa1abe1d7acbaa5877df933a7ae9362559eb6 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,10 @@ Core and Builtins
 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.