[Python-checkins] cpython: Deprecate the imp constants related to imp.get_suffixes().
brett.cannon
python-checkins at python.org
Fri May 11 20:48:48 CEST 2012
http://hg.python.org/cpython/rev/f11015632f6d
changeset: 76876:f11015632f6d
user: Brett Cannon <brett at python.org>
date: Fri May 11 14:27:29 2012 -0400
summary:
Deprecate the imp constants related to imp.get_suffixes().
files:
Doc/library/imp.rst | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/Doc/library/imp.rst b/Doc/library/imp.rst
--- a/Doc/library/imp.rst
+++ b/Doc/library/imp.rst
@@ -236,31 +236,43 @@
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)
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list