diff options
author | Brett Cannon <brett@python.org> | 2014-01-17 17:06:28 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2014-01-17 17:06:28 (GMT) |
commit | 24f60b46168d6ebee74cd145cca16926e63506de (patch) | |
tree | b82ddbe58947f076e4d0c4e7a280fc9c0f21599e /Doc/library/imp.rst | |
parent | f0996a99706e2335ee14348f63230ba88d217712 (diff) | |
download | cpython-24f60b46168d6ebee74cd145cca16926e63506de.zip cpython-24f60b46168d6ebee74cd145cca16926e63506de.tar.gz cpython-24f60b46168d6ebee74cd145cca16926e63506de.tar.bz2 |
Issues #20194,20195: Add missing :deprecated: markers to some module
docs.
Diffstat (limited to 'Doc/library/imp.rst')
-rw-r--r-- | Doc/library/imp.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/imp.rst b/Doc/library/imp.rst index ee02c3f..8f0b79f 100644 --- a/Doc/library/imp.rst +++ b/Doc/library/imp.rst @@ -1,12 +1,12 @@ :mod:`imp` --- Access the :ref:`import <importsystem>` internals ================================================================ -.. deprecated:: 3.4 - The :mod:`imp` package is pending deprecation in favor of :mod:`importlib`. - .. module:: imp :synopsis: Access the implementation of the import statement. + :deprecated: +.. deprecated:: 3.4 + The :mod:`imp` package is pending deprecation in favor of :mod:`importlib`. .. index:: statement: import |