]> granicus.if.org Git - python/commitdiff
Issue #23883: Update news
authorMartin Panter <vadmium+py@gmail.com>
Sat, 16 Jan 2016 07:01:46 +0000 (07:01 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Sat, 16 Jan 2016 07:01:46 +0000 (07:01 +0000)
Doc/whatsnew/3.6.rst
Misc/NEWS

index a5b9be2ecb4b72e099058f9c1d4ce1fb6c9bc127..f54cf12ca19b5527c2d937f0632bac19c0d2d75b 100644 (file)
@@ -251,8 +251,9 @@ Changes in the Python API
   :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
+  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 when ``import *``
   is used.  See :issue:`23883`.
 
index f87703f4a5e85c056188e8b0d7d7d9f2517077be..0e46c8d5dc6ec4d9bd782a759a7f279de47dac7c 100644 (file)
--- 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.
+  for the following modules: calendar, csv, enum, fileinput, ftplib, logging,
+  optparse, tarfile, threading and wave.  Also added a
+  test.support.check__all__() helper.  Patches by Jacek Kołodziej, Mauro
+  S. M. Rodrigues and Joel Taddei.
 
 - Issue #25590: In the Readline completer, only call getattr() once per
   attribute.  Also complete names of attributes such as properties and slots