summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-07-25 10:03:30 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2015-07-25 10:03:30 (GMT)
commit8028769852bb2e73e8ea17bbacc959cb0d68aa64 (patch)
tree714e04ad92c3db13c5469d6e7f4eae517a3c9907
parent8932cd169ce409e73168a734887bf83643273f04 (diff)
parenta1bddadddddc5743d91f2007fb8182c5fbf96fc5 (diff)
downloadcpython-8028769852bb2e73e8ea17bbacc959cb0d68aa64.zip
cpython-8028769852bb2e73e8ea17bbacc959cb0d68aa64.tar.gz
cpython-8028769852bb2e73e8ea17bbacc959cb0d68aa64.tar.bz2
Issue #24713: Use importlib.reload() in import reference document.
imp.reload() was deprecated in Python 3.4 and changed to call importlib.reload(). Patch by Petr Viktorin.
-rw-r--r--Doc/reference/import.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/import.rst b/Doc/reference/import.rst
index 50e4688..d549b26 100644
--- a/Doc/reference/import.rst
+++ b/Doc/reference/import.rst
@@ -200,7 +200,7 @@ of the module to result in an :exc:`ImportError`.
Beware though, as if you keep a reference to the module object,
invalidate its cache entry in :data:`sys.modules`, and then re-import the
named module, the two module objects will *not* be the same. By contrast,
-:func:`imp.reload` will reuse the *same* module object, and simply
+:func:`importlib.reload` will reuse the *same* module object, and simply
reinitialise the module contents by rerunning the module's code.