mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Issue #23883: Add news listing modules with new exported APIs
This commit is contained in:
parent
19e69c5a20
commit
28a465c9e0
2 changed files with 11 additions and 0 deletions
|
@ -230,6 +230,12 @@ Changes in the Python API
|
||||||
* The :mod:`imp` module now raises a :exc:`DeprecationWarning` instead of
|
* The :mod:`imp` module now raises a :exc:`DeprecationWarning` instead of
|
||||||
:exc:`PendingDeprecationWarning`.
|
: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
|
Changes in the C API
|
||||||
--------------------
|
--------------------
|
||||||
|
|
|
@ -85,6 +85,11 @@ Core and Builtins
|
||||||
Library
|
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
|
- Issue #25590: In the Readline completer, only call getattr() once per
|
||||||
attribute. Also complete names of attributes such as properties and slots
|
attribute. Also complete names of attributes such as properties and slots
|
||||||
which are listed by dir() but not yet created on an instance.
|
which are listed by dir() but not yet created on an instance.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue