Don't abbreviate ABS, use long name ABSOLUTE.
[python.git] / Modules / config.c.in
blob9ec281cf3f99e5ee2655aeff5cb53a9ac752a8bb
1 /* -*- C -*- ***********************************************
2 Copyright (c) 2000, BeOpen.com.
3 Copyright (c) 1995-2000, Corporation for National Research Initiatives.
4 Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
5 All rights reserved.
7 See the file "Misc/COPYRIGHT" for information on usage and
8 redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
9 ******************************************************************/
11 /* Module configuration */
13 /* !!! !!! !!! This file is edited by the makesetup script !!! !!! !!! */
15 /* This file contains the table of built-in modules.
16 See init_builtin() in import.c. */
18 #include "Python.h"
21 /* -- ADDMODULE MARKER 1 -- */
23 extern void PyMarshal_Init(void);
24 extern void initimp(void);
25 extern void initgc(void);
26 extern void init_ast(void);
28 struct _inittab _PyImport_Inittab[] = {
30 /* -- ADDMODULE MARKER 2 -- */
32 /* This module lives in marshal.c */
33 {"marshal", PyMarshal_Init},
35 /* This lives in import.c */
36 {"imp", initimp},
38 /* This lives in Python/Python-ast.c */
39 {"_ast", init_ast},
41 /* These entries are here for sys.builtin_module_names */
42 {"__main__", NULL},
43 {"__builtin__", NULL},
44 {"sys", NULL},
45 {"exceptions", NULL},
47 /* This lives in gcmodule.c */
48 {"gc", initgc},
50 /* Sentinel */
51 {0, 0}