mirror of https://github.com/python/cpython
Deprecate the imp constants related to imp.get_suffixes().
This commit is contained in:
parent
44ec91f6a5
commit
0c59b039b8
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue