[Python-checkins] cpython: whatsnew: remove XXXs.

r.david.murray python-checkins at python.org
Tue Mar 11 02:39:10 CET 2014


http://hg.python.org/cpython/rev/dfedeb76a20f
changeset:   89578:dfedeb76a20f
user:        R David Murray <rdmurray at bitdance.com>
date:        Mon Mar 10 21:38:37 2014 -0400
summary:
  whatsnew: remove XXXs.

Can't figure out what the other issue was for the importlib
changes.  Did find a small typo in the reload doc, though.

files:
  Doc/library/importlib.rst |  2 +-
  Doc/whatsnew/3.4.rst      |  8 +-------
  2 files changed, 2 insertions(+), 8 deletions(-)


diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst
--- a/Doc/library/importlib.rst
+++ b/Doc/library/importlib.rst
@@ -134,7 +134,7 @@
 
    When :func:`reload` is executed:
 
-   * Python modules' code is recompiled and the module-level code re-executed,
+   * Python module's code is recompiled and the module-level code re-executed,
      defining a new set of objects which are bound to names in the module's
      dictionary by reusing the :term:`loader` which originally loaded the
      module.  The ``init`` function of extension modules is not called a second
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -2062,12 +2062,6 @@
   latter, all arguments to ``XMLParser`` should be passed by keyword.
 
 
-Deprecations in the C API
--------------------------
-
-XXX: None so far
-
-
 Deprecated Features
 -------------------
 
@@ -2205,7 +2199,7 @@
 * Import now resets relevant attributes (e.g. ``__name__``, ``__loader__``,
   ``__package__``, ``__file__``, ``__cached__``) unconditionally when reloading.
   Note that this restores a pre-3.3 behavior in that it means a module is
-  re-found when re-loaded (:issue:`19413` and XXX).
+  re-found when re-loaded (:issue:`19413`).
 
 * Frozen packages no longer set ``__path__`` to a list containing the package
   name, they now set it to an empty list.  The previous behavior could cause

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list