diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-02-02 15:50:17 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-02-02 15:50:17 (GMT) |
commit | 70e04f5fbc0b62c4d1d04fd982204437120f791d (patch) | |
tree | 9192e1a9ebaf073820cfb03fd07960f50831fae5 | |
parent | 9592edb834cdbf3d222f65b8c37e431c87be1792 (diff) | |
download | cpython-70e04f5fbc0b62c4d1d04fd982204437120f791d.zip cpython-70e04f5fbc0b62c4d1d04fd982204437120f791d.tar.gz cpython-70e04f5fbc0b62c4d1d04fd982204437120f791d.tar.bz2 |
whatsnew: fix importlib.reload entry.
Turns out I committed a work-in-progress entry because of a time
gap between when I wrote it and when I committed.
-rw-r--r-- | Doc/whatsnew/3.4.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 1da0702..2292297 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -765,9 +765,9 @@ for the :meth:`~importlib.abc.InspectLoader.get_code` method. However, it will normally be desirable to override the default implementation for performance reasons. (Contributed by Brett Cannon in :issue:`18072`.) -The :func:`~importlib.reload` function has been moved from :mod:`imp` -to :mod:`importlib`. The :func:`mod.reload` name is retained for -backward compatibility, but is deprecated. +The :func:`~importlib.reload` function has been moved from :mod:`imp` to +:mod:`importlib` as part of the :mod:`imp` module deprecation. (Contributed by +Berker Peksag in :issue:`18193`.) inspect |