[Python-checkins] cpython: Issues #20194,20195: Add missing :deprecated: markers to some module

brett.cannon python-checkins at python.org
Fri Jan 17 18:06:38 CET 2014


http://hg.python.org/cpython/rev/30013dbb5bc2
changeset:   88524:30013dbb5bc2
user:        Brett Cannon <brett at python.org>
date:        Fri Jan 17 12:06:28 2014 -0500
summary:
  Issues #20194,20195: Add missing :deprecated: markers to some module
docs.

files:
  Doc/library/formatter.rst |  1 +
  Doc/library/imp.rst       |  8 ++++----
  2 files changed, 5 insertions(+), 4 deletions(-)


diff --git a/Doc/library/formatter.rst b/Doc/library/formatter.rst
--- 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
--- a/Doc/library/imp.rst
+++ b/Doc/library/imp.rst
@@ -1,13 +1,13 @@
 :mod:`imp` --- Access the :ref:`import <importsystem>` internals
 ================================================================
 
+.. 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`.
 
-.. module:: imp
-   :synopsis: Access the implementation of the import statement.
-
-
 .. index:: statement: import
 
 This module provides an interface to the mechanisms used to implement the

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list