(original) (raw)
changeset: 99134:25a7ceed79d1 user: Martin Panter vadmium+py@gmail.com date: Sat Nov 14 12:52:08 2015 +0000 files: Doc/whatsnew/3.6.rst Misc/NEWS description: Issue #23883: Add news listing modules with new exported APIs diff -r 78d67bdc1142 -r 25a7ceed79d1 Doc/whatsnew/3.6.rst --- a/Doc/whatsnew/3.6.rst Sat Nov 14 12:46:42 2015 +0000 +++ b/Doc/whatsnew/3.6.rst Sat Nov 14 12:52:08 2015 +0000 @@ -230,6 +230,12 @@ * The :mod:`imp` module now raises a :exc:`DeprecationWarning` instead of :exc:`PendingDeprecationWarning`. +* The following modules have had missing APIs added to their :attr:`__all__` + attributes to match the documented APIs: :mod:`csv`, :mod:`enum`, + :mod:`ftplib`, :mod:`logging`, :mod:`optparse`, :mod:`threading` and + :mod:`wave`. This means they will export new symbols when ``import *`` + is used. See :issue:`23883`. + Changes in the C API -------------------- diff -r 78d67bdc1142 -r 25a7ceed79d1 Misc/NEWS --- a/Misc/NEWS Sat Nov 14 12:46:42 2015 +0000 +++ b/Misc/NEWS Sat Nov 14 12:52:08 2015 +0000 @@ -85,6 +85,11 @@ Library ------- +- Issue #23883: Added missing APIs to __all__ to match the documented APIs + for the following modules: csv, enum, ftplib, logging, optparse, threading + and wave. Also added a test.support.check__all__() helper. Patches by + Jacek KoĆodziej. + - Issue #25590: In the Readline completer, only call getattr() once per attribute. Also complete names of attributes such as properties and slots which are listed by dir() but not yet created on an instance. /vadmium+py@gmail.com