diff options
author | Brett Cannon <brett@python.org> | 2012-05-11 18:27:29 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-05-11 18:27:29 (GMT) |
commit | 0c59b039b86afa9f51c30f7d9f340d9c75984488 (patch) | |
tree | fe5627f14e35188063b2ee9818e955e0371f87e6 /Doc/library/imp.rst | |
parent | 44ec91f6a5d1b258484242174134ddbc1430d77c (diff) | |
download | cpython-0c59b039b86afa9f51c30f7d9f340d9c75984488.zip cpython-0c59b039b86afa9f51c30f7d9f340d9c75984488.tar.gz cpython-0c59b039b86afa9f51c30f7d9f340d9c75984488.tar.bz2 |
Deprecate the imp constants related to imp.get_suffixes().
Diffstat (limited to 'Doc/library/imp.rst')
-rw-r--r-- | Doc/library/imp.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Doc/library/imp.rst b/Doc/library/imp.rst index 7270e3c..7e5f8dc 100644 --- a/Doc/library/imp.rst +++ b/Doc/library/imp.rst @@ -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) |