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.
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. */
21 /* -- ADDMODULE MARKER 1 -- */
23 extern void PyMarshal_Init(void);
24 extern void initimp(void);
26 struct _inittab _PyImport_Inittab
[] = {
28 /* -- ADDMODULE MARKER 2 -- */
30 /* This module lives in marshal.c */
31 {"marshal", PyMarshal_Init
},
33 /* This lives in import.c */
36 /* These entries are here for sys.builtin_module_names */
38 {"__builtin__", NULL
},
40 {"exceptions", init_exceptions
},