diff options
author | Brett Cannon <brett@python.org> | 2012-05-04 20:13:30 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-05-04 20:13:30 (GMT) |
commit | 0429e1a57da91632010888bb360bb0789fbb8a66 (patch) | |
tree | 05283d187f82e4c565fa0d27a66a4d155306886e /Python/importdl.h | |
parent | 2d3ce9de4fd45e9bfa922011078b1e1986022df7 (diff) | |
download | cpython-0429e1a57da91632010888bb360bb0789fbb8a66.zip cpython-0429e1a57da91632010888bb360bb0789fbb8a66.tar.gz cpython-0429e1a57da91632010888bb360bb0789fbb8a66.tar.bz2 |
Issue #13959: Move module type constants to Lib/imp.py.
Diffstat (limited to 'Python/importdl.h')
-rw-r--r-- | Python/importdl.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Python/importdl.h b/Python/importdl.h index 32c6b5b..6b9cf75 100644 --- a/Python/importdl.h +++ b/Python/importdl.h @@ -6,21 +6,6 @@ extern "C" { #endif -/* Definitions for dynamic loading of extension modules */ -enum filetype { - SEARCH_ERROR, - PY_SOURCE, - PY_COMPILED, - C_EXTENSION, - PY_RESOURCE, /* Mac only */ - PKG_DIRECTORY, - C_BUILTIN, - PY_FROZEN, - PY_CODERESOURCE, /* Mac only */ - IMP_HOOK -}; - - extern const char *_PyImport_DynLoadFiletab[]; extern PyObject *_PyImport_LoadDynamicModule(PyObject *name, PyObject *pathname, |