diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-07-25 10:02:37 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-07-25 10:02:37 (GMT) |
commit | 7e732a7181ab6debfe5df33bfc29035d522dfef9 (patch) | |
tree | 1a25bfe0c6563cc7a9f477f83bf14e2c3d4bc559 /Doc | |
parent | eaf16abc68a09e2d976c37e34eb606f5b519f7ea (diff) | |
download | cpython-7e732a7181ab6debfe5df33bfc29035d522dfef9.zip cpython-7e732a7181ab6debfe5df33bfc29035d522dfef9.tar.gz cpython-7e732a7181ab6debfe5df33bfc29035d522dfef9.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.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/reference/import.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/import.rst b/Doc/reference/import.rst index 7966bc5..16d28d8 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. |