]> granicus.if.org Git - python/commitdiff
whatsnew: remove XXXs.
authorR David Murray <rdmurray@bitdance.com>
Tue, 11 Mar 2014 01:38:37 +0000 (21:38 -0400)
committerR David Murray <rdmurray@bitdance.com>
Tue, 11 Mar 2014 01:38:37 +0000 (21:38 -0400)
Can't figure out what the other issue was for the importlib
changes.  Did find a small typo in the reload doc, though.

Doc/library/importlib.rst
Doc/whatsnew/3.4.rst

index a81ccfdb90f0a5e0862eda6915856c1dc4548a49..3b55b06ec096a3662ab7dfe7a5e63d84cbf91c3f 100644 (file)
@@ -134,7 +134,7 @@ Functions
 
    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
index 77ae26e372c8f3608c2bd0fd8679b08a77eeff2c..f1cb9d4043968699ffd089f5a132bc461611ba15 100644 (file)
@@ -2062,12 +2062,6 @@ Deprecations in the Python API
   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 @@ Changes in the Python API
 * 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