cpython: 25a7ceed79d1 (original) (raw)
Mercurial > cpython
changeset 99134:25a7ceed79d1
Issue #23883: Add news listing modules with new exported APIs [#23883]
Martin Panter vadmium+py@gmail.com | |
---|---|
date | Sat, 14 Nov 2015 12:52:08 +0000 |
parents | 78d67bdc1142 |
children | ea0c4b811eae |
files | Doc/whatsnew/3.6.rst Misc/NEWS |
diffstat | 2 files changed, 11 insertions(+), 0 deletions(-)[+] [-] Doc/whatsnew/3.6.rst 6 Misc/NEWS 5 |
line wrap: on
line diff
--- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -230,6 +230,12 @@ Changes in the Python API
- 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 whenimport *
- is used. See :issue:
23883
. + Changes in the C API --------------------
--- a/Misc/NEWS +++ b/Misc/NEWS @@ -85,6 +85,11 @@ Core and Builtins Library ------- +- Issue #23883: Added missing APIs to all to match the documented APIs