Issue #13959: Move module type constants to Lib/imp.py.

This commit is contained in:
Brett Cannon 2012-05-04 16:13:30 -04:00
parent 2d3ce9de4f
commit 0429e1a57d
2 changed files with 0 additions and 37 deletions

View file

@ -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,