]> granicus.if.org Git - python/commitdiff
Deprecate the imp constants related to imp.get_suffixes().
authorBrett Cannon <brett@python.org>
Fri, 11 May 2012 18:27:29 +0000 (14:27 -0400)
committerBrett Cannon <brett@python.org>
Fri, 11 May 2012 18:27:29 +0000 (14:27 -0400)
Doc/library/imp.rst

index 7270e3c690657eb94f37e0e4f9f312006a442cdb..7e5f8dc602d9a5d763e788110f332f4e0322ec41 100644 (file)
@@ -236,31 +236,43 @@ to indicate the search result of :func:`find_module`.
 
    The module was found as a source file.
 
+   .. deprecated:: 3.3
+
 
 .. data:: PY_COMPILED
 
    The module was found as a compiled code object file.
 
+   .. deprecated:: 3.3
+
 
 .. data:: C_EXTENSION
 
    The module was found as dynamically loadable shared library.
 
+   .. deprecated:: 3.3
+
 
 .. data:: PKG_DIRECTORY
 
    The module was found as a package directory.
 
+   .. deprecated:: 3.3
+
 
 .. data:: C_BUILTIN
 
    The module was found as a built-in module.
 
+   .. deprecated:: 3.3
+
 
 .. data:: PY_FROZEN
 
    The module was found as a frozen module.
 
+   .. deprecated:: 3.3
+
 
 .. class:: NullImporter(path_string)