Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0c18282

Browse files
committed
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.
1 parent 4896ebe commit 0c18282

2 files changed

Lines changed: 2 additions & 8 deletions

File tree

Doc/library/importlib.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Functions
134134

135135
When :func:`reload` is executed:
136136

137-
* Python modules' code is recompiled and the module-level code re-executed,
137+
* Python module's code is recompiled and the module-level code re-executed,
138138
defining a new set of objects which are bound to names in the module's
139139
dictionary by reusing the :term:`loader` which originally loaded the
140140
module. The ``init`` function of extension modules is not called a second

Doc/whatsnew/3.4.rst

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2062,12 +2062,6 @@ Deprecations in the Python API
20622062
latter, all arguments to ``XMLParser`` should be passed by keyword.
20632063

20642064

2065-
Deprecations in the C API
2066-
-------------------------
2067-
2068-
XXX: None so far
2069-
2070-
20712065
Deprecated Features
20722066
-------------------
20732067

@@ -2205,7 +2199,7 @@ Changes in the Python API
22052199
* Import now resets relevant attributes (e.g. ``__name__``, ``__loader__``,
22062200
``__package__``, ``__file__``, ``__cached__``) unconditionally when reloading.
22072201
Note that this restores a pre-3.3 behavior in that it means a module is
2208-
re-found when re-loaded (:issue:`19413` and XXX).
2202+
re-found when re-loaded (:issue:`19413`).
22092203

22102204
* Frozen packages no longer set ``__path__`` to a list containing the package
22112205
name, they now set it to an empty list. The previous behavior could cause

0 commit comments

Comments
 (0)