cpython: a5d3ebb6ad2a (original) (raw)
Mercurial > cpython
changeset 99928:a5d3ebb6ad2a
Issue #23883: Update news [#23883]
Martin Panter vadmium+py@gmail.com | |
---|---|
date | Sat, 16 Jan 2016 07:01:46 +0000 |
parents | 48090e08e367 |
children | 62e925be0aff |
files | Doc/whatsnew/3.6.rst Misc/NEWS |
diffstat | 2 files changed, 7 insertions(+), 5 deletions(-)[+] [-] Doc/whatsnew/3.6.rst 5 Misc/NEWS 7 |
line wrap: on
line diff
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -251,8 +251,9 @@ Changes in the Python API
:exc:PendingDeprecationWarning
.
- attributes to match the documented APIs: :mod:
csv
, :mod:enum
, - :mod:
ftplib
, :mod:logging
, :mod:optparse
, :mod:threading
and
- attributes to match the documented APIs: :mod:
calendar
, :mod:csv
, - :mod:
enum
, :mod:fileinput
, :mod:ftplib
, :mod:logging
, - :mod:
optparse
, :mod:tarfile
, :mod:threading
and :mod:wave
. This means they will export new symbols whenimport *
is used. See :issue:23883
.
--- a/Misc/NEWS +++ b/Misc/NEWS @@ -275,9 +275,10 @@ Library anything as they could potentially signal a different process.
- 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.