diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-03-11 01:38:37 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-03-11 01:38:37 (GMT) |
commit | 0c18282da685cc8a80f986570da134f126bf2627 (patch) | |
tree | cbc538ff3b083c9907096c1044c75049c0d7d7bd /Doc/library | |
parent | 4896ebee1fc7a9b851e9429312271903f144e88e (diff) | |
download | cpython-0c18282da685cc8a80f986570da134f126bf2627.zip cpython-0c18282da685cc8a80f986570da134f126bf2627.tar.gz cpython-0c18282da685cc8a80f986570da134f126bf2627.tar.bz2 |
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.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/importlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index a81ccfd..3b55b06 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -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 |