| | |
| | Copyright (c) 2000, BeOpen.com. |
| | Copyright (c) 1995-2000, Corporation for National Research Initiatives. |
| | Copyright (c) 1990-1995, Stichting Mathematisch Centrum. |
| | All rights reserved. |
| |
|
| | See the file "Misc/COPYRIGHT" for information on usage and |
| | redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. |
| | ******************************************************************/ |
| |
|
| | |
| |
|
| | |
| |
|
| | |
| | See create_builtin() in import.c. */ |
| |
|
| | #include "Python.h" |
| |
|
| | #ifdef __cplusplus |
| | extern "C" { |
| | #endif |
| |
|
| |
|
| | |
| |
|
| | extern PyObject* PyMarshal_Init(void); |
| | extern PyObject* PyInit__imp(void); |
| | extern PyObject* PyInit_gc(void); |
| | extern PyObject* PyInit__ast(void); |
| | extern PyObject* PyInit__tokenize(void); |
| | extern PyObject* _PyWarnings_Init(void); |
| | extern PyObject* PyInit__string(void); |
| |
|
| | struct _inittab _PyImport_Inittab[] = { |
| |
|
| | |
| |
|
| | |
| | {"marshal", PyMarshal_Init}, |
| |
|
| | |
| | {"_imp", PyInit__imp}, |
| |
|
| | |
| | {"_ast", PyInit__ast}, |
| |
|
| | |
| | {"_tokenize", PyInit__tokenize}, |
| |
|
| | |
| | {"builtins", NULL}, |
| | {"sys", NULL}, |
| |
|
| | |
| | {"gc", PyInit_gc}, |
| |
|
| | |
| | {"_warnings", _PyWarnings_Init}, |
| |
|
| | |
| | {"_string", PyInit__string}, |
| |
|
| | |
| | {0, 0} |
| | }; |
| |
|
| |
|
| | #ifdef __cplusplus |
| | } |
| | #endif |
| |
|