1 | n/a | /* Generated automatically from ./Modules/config.c.in by makesetup. */ |
---|
2 | n/a | /* -*- C -*- *********************************************** |
---|
3 | n/a | Copyright (c) 2000, BeOpen.com. |
---|
4 | n/a | Copyright (c) 1995-2000, Corporation for National Research Initiatives. |
---|
5 | n/a | Copyright (c) 1990-1995, Stichting Mathematisch Centrum. |
---|
6 | n/a | All rights reserved. |
---|
7 | n/a | |
---|
8 | n/a | See the file "Misc/COPYRIGHT" for information on usage and |
---|
9 | n/a | redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. |
---|
10 | n/a | ******************************************************************/ |
---|
11 | n/a | |
---|
12 | n/a | /* Module configuration */ |
---|
13 | n/a | |
---|
14 | n/a | /* !!! !!! !!! This file is edited by the makesetup script !!! !!! !!! */ |
---|
15 | n/a | |
---|
16 | n/a | /* This file contains the table of built-in modules. |
---|
17 | n/a | See create_builtin() in import.c. */ |
---|
18 | n/a | |
---|
19 | n/a | #include "Python.h" |
---|
20 | n/a | |
---|
21 | n/a | #ifdef __cplusplus |
---|
22 | n/a | extern "C" { |
---|
23 | n/a | #endif |
---|
24 | n/a | |
---|
25 | n/a | |
---|
26 | n/a | extern PyObject* PyInit__thread(void); |
---|
27 | n/a | extern PyObject* PyInit_posix(void); |
---|
28 | n/a | extern PyObject* PyInit_errno(void); |
---|
29 | n/a | extern PyObject* PyInit_pwd(void); |
---|
30 | n/a | extern PyObject* PyInit__sre(void); |
---|
31 | n/a | extern PyObject* PyInit__codecs(void); |
---|
32 | n/a | extern PyObject* PyInit__weakref(void); |
---|
33 | n/a | extern PyObject* PyInit__functools(void); |
---|
34 | n/a | extern PyObject* PyInit__operator(void); |
---|
35 | n/a | extern PyObject* PyInit__collections(void); |
---|
36 | n/a | extern PyObject* PyInit_itertools(void); |
---|
37 | n/a | extern PyObject* PyInit_atexit(void); |
---|
38 | n/a | extern PyObject* PyInit__signal(void); |
---|
39 | n/a | extern PyObject* PyInit__stat(void); |
---|
40 | n/a | extern PyObject* PyInit_time(void); |
---|
41 | n/a | extern PyObject* PyInit__locale(void); |
---|
42 | n/a | extern PyObject* PyInit__io(void); |
---|
43 | n/a | extern PyObject* PyInit_zipimport(void); |
---|
44 | n/a | extern PyObject* PyInit_faulthandler(void); |
---|
45 | n/a | extern PyObject* PyInit__tracemalloc(void); |
---|
46 | n/a | extern PyObject* PyInit__symtable(void); |
---|
47 | n/a | extern PyObject* PyInit_xxsubtype(void); |
---|
48 | n/a | |
---|
49 | n/a | /* -- ADDMODULE MARKER 1 -- */ |
---|
50 | n/a | |
---|
51 | n/a | extern PyObject* PyMarshal_Init(void); |
---|
52 | n/a | extern PyObject* PyInit_imp(void); |
---|
53 | n/a | extern PyObject* PyInit_gc(void); |
---|
54 | n/a | extern PyObject* PyInit__ast(void); |
---|
55 | n/a | extern PyObject* _PyWarnings_Init(void); |
---|
56 | n/a | extern PyObject* PyInit__string(void); |
---|
57 | n/a | |
---|
58 | n/a | struct _inittab _PyImport_Inittab[] = { |
---|
59 | n/a | |
---|
60 | n/a | {"_thread", PyInit__thread}, |
---|
61 | n/a | {"posix", PyInit_posix}, |
---|
62 | n/a | {"errno", PyInit_errno}, |
---|
63 | n/a | {"pwd", PyInit_pwd}, |
---|
64 | n/a | {"_sre", PyInit__sre}, |
---|
65 | n/a | {"_codecs", PyInit__codecs}, |
---|
66 | n/a | {"_weakref", PyInit__weakref}, |
---|
67 | n/a | {"_functools", PyInit__functools}, |
---|
68 | n/a | {"_operator", PyInit__operator}, |
---|
69 | n/a | {"_collections", PyInit__collections}, |
---|
70 | n/a | {"itertools", PyInit_itertools}, |
---|
71 | n/a | {"atexit", PyInit_atexit}, |
---|
72 | n/a | {"_signal", PyInit__signal}, |
---|
73 | n/a | {"_stat", PyInit__stat}, |
---|
74 | n/a | {"time", PyInit_time}, |
---|
75 | n/a | {"_locale", PyInit__locale}, |
---|
76 | n/a | {"_io", PyInit__io}, |
---|
77 | n/a | {"zipimport", PyInit_zipimport}, |
---|
78 | n/a | {"faulthandler", PyInit_faulthandler}, |
---|
79 | n/a | {"_tracemalloc", PyInit__tracemalloc}, |
---|
80 | n/a | {"_symtable", PyInit__symtable}, |
---|
81 | n/a | {"xxsubtype", PyInit_xxsubtype}, |
---|
82 | n/a | |
---|
83 | n/a | /* -- ADDMODULE MARKER 2 -- */ |
---|
84 | n/a | |
---|
85 | n/a | /* This module lives in marshal.c */ |
---|
86 | n/a | {"marshal", PyMarshal_Init}, |
---|
87 | n/a | |
---|
88 | n/a | /* This lives in import.c */ |
---|
89 | n/a | {"_imp", PyInit_imp}, |
---|
90 | n/a | |
---|
91 | n/a | /* This lives in Python/Python-ast.c */ |
---|
92 | n/a | {"_ast", PyInit__ast}, |
---|
93 | n/a | |
---|
94 | n/a | /* These entries are here for sys.builtin_module_names */ |
---|
95 | n/a | {"builtins", NULL}, |
---|
96 | n/a | {"sys", NULL}, |
---|
97 | n/a | |
---|
98 | n/a | /* This lives in gcmodule.c */ |
---|
99 | n/a | {"gc", PyInit_gc}, |
---|
100 | n/a | |
---|
101 | n/a | /* This lives in _warnings.c */ |
---|
102 | n/a | {"_warnings", _PyWarnings_Init}, |
---|
103 | n/a | |
---|
104 | n/a | /* This lives in Objects/unicodeobject.c */ |
---|
105 | n/a | {"_string", PyInit__string}, |
---|
106 | n/a | |
---|
107 | n/a | /* Sentinel */ |
---|
108 | n/a | {0, 0} |
---|
109 | n/a | }; |
---|
110 | n/a | |
---|
111 | n/a | |
---|
112 | n/a | #ifdef __cplusplus |
---|
113 | n/a | } |
---|
114 | n/a | #endif |
---|