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 | |
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')
-rw-r--r-- | Doc/library/formatter.rst | 1 | ||||
-rw-r--r-- | Doc/library/imp.rst | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Doc/library/formatter.rst b/Doc/library/formatter.rst index bdc9e7b..1847a80 100644 --- a/Doc/library/formatter.rst +++ b/Doc/library/formatter.rst @@ -3,6 +3,7 @@ .. module:: formatter :synopsis: Generic output formatter and device interface. + :deprecated: .. deprecated:: 3.4 Due to lack of usage, the formatter module has been deprecated and is slated 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 |