: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`.
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.