diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-06-13 13:55:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-13 13:55:56 -0700 |
commit | f8c05bb3a6f25224d7767561ec6a36a737e17779 (patch) | |
tree | ecc287071b75e7434ef2f644a7bedf1bc05acd90 | |
parent | a8936fa5c09c039ad457dda8bdf733be6cc182e3 (diff) | |
download | cpython-git-f8c05bb3a6f25224d7767561ec6a36a737e17779.tar.gz |
[3.8] bpo-37674: Tweak imp module deprecation note in the docs (GH-20480) (GH-20860)
(cherry picked from commit dea3223740127ac13f984c1d38f127ab6701af44)
Co-authored-by: Zackery Spytz <zspytz@gmail.com>
Automerge-Triggered-By: @brettcannon
-rw-r--r-- | Doc/library/imp.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/imp.rst b/Doc/library/imp.rst index f5ad8c7229..121a730e0c 100644 --- a/Doc/library/imp.rst +++ b/Doc/library/imp.rst @@ -8,7 +8,7 @@ **Source code:** :source:`Lib/imp.py` .. deprecated:: 3.4 - The :mod:`imp` package is pending deprecation in favor of :mod:`importlib`. + The :mod:`imp` module is deprecated in favor of :mod:`importlib`. .. index:: statement: import |