1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #include "Python.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- extern void PyMarshal_Init(void);
- extern void initimp(void);
- extern void initgc(void);
- extern void init_ast(void);
- extern void _PyWarnings_Init(void);
- struct _inittab _PyImport_Inittab[] = {
-
- {"marshal", PyMarshal_Init},
-
- {"imp", initimp},
-
- {"_ast", init_ast},
-
- {"__main__", NULL},
- {"__builtin__", NULL},
- {"sys", NULL},
- {"exceptions", NULL},
-
- {"gc", initgc},
-
- {"_warnings", _PyWarnings_Init},
-
- {0, 0}
- };
- #ifdef __cplusplus
- }
- #endif
|