Changeset 391 for python/trunk/Python/importdl.h
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Python/importdl.h
r2 r391 9 9 /* Definitions for dynamic loading of extension modules */ 10 10 enum filetype { 11 12 13 14 15 16 17 18 19 20 11 SEARCH_ERROR, 12 PY_SOURCE, 13 PY_COMPILED, 14 C_EXTENSION, 15 PY_RESOURCE, /* Mac only */ 16 PKG_DIRECTORY, 17 C_BUILTIN, 18 PY_FROZEN, 19 PY_CODERESOURCE, /* Mac only */ 20 IMP_HOOK 21 21 }; 22 22 23 23 struct filedescr { 24 25 26 24 char *suffix; 25 char *mode; 26 enum filetype type; 27 27 }; 28 28 extern struct filedescr * _PyImport_Filetab; … … 30 30 31 31 extern PyObject *_PyImport_LoadDynamicModule(char *name, char *pathname, 32 32 FILE *); 33 33 34 34 /* Max length of module suffix searched for -- accommodates "module.slb" */
Note:
See TracChangeset
for help on using the changeset viewer.