[Python-checkins] cpython: whatsnew: fix importlib.reload entry.

r.david.murray python-checkins at python.org
Sun Feb 2 17:33:12 CET 2014


http://hg.python.org/cpython/rev/a0e7e13535a7
changeset:   88894:a0e7e13535a7
user:        R David Murray <rdmurray at bitdance.com>
date:        Sun Feb 02 10:50:17 2014 -0500
summary:
  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.

files:
  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
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -765,9 +765,9 @@
 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

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


More information about the Python-checkins mailing list