diff options
author | Zackery Spytz <zspytz@gmail.com> | 2020-06-13 17:35:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-13 17:35:08 (GMT) |
commit | dea3223740127ac13f984c1d38f127ab6701af44 (patch) | |
tree | ba27dc6bfe22f5753a3a949744fb0fba7b87f855 | |
parent | 9db5b8d44858d134b0b225df481b784d7511dbd4 (diff) | |
download | cpython-dea3223740127ac13f984c1d38f127ab6701af44.zip cpython-dea3223740127ac13f984c1d38f127ab6701af44.tar.gz cpython-dea3223740127ac13f984c1d38f127ab6701af44.tar.bz2 |
bpo-37674: Tweak imp module deprecation note in the docs (GH-20480)
-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 f5ad8c7..121a730 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 |