Untabify Modules/config.c.in.
This commit is contained in:
parent
3d08d88459
commit
ddac33882b
|
@ -34,33 +34,32 @@ struct _inittab _PyImport_Inittab[] = {
|
||||||
|
|
||||||
/* -- ADDMODULE MARKER 2 -- */
|
/* -- ADDMODULE MARKER 2 -- */
|
||||||
|
|
||||||
/* This module lives in marshal.c */
|
/* This module lives in marshal.c */
|
||||||
{"marshal", PyMarshal_Init},
|
{"marshal", PyMarshal_Init},
|
||||||
|
|
||||||
/* This lives in import.c */
|
/* This lives in import.c */
|
||||||
{"imp", initimp},
|
{"imp", initimp},
|
||||||
|
|
||||||
/* This lives in Python/Python-ast.c */
|
/* This lives in Python/Python-ast.c */
|
||||||
{"_ast", init_ast},
|
{"_ast", init_ast},
|
||||||
|
|
||||||
/* These entries are here for sys.builtin_module_names */
|
/* These entries are here for sys.builtin_module_names */
|
||||||
{"__main__", NULL},
|
{"__main__", NULL},
|
||||||
{"__builtin__", NULL},
|
{"__builtin__", NULL},
|
||||||
{"sys", NULL},
|
{"sys", NULL},
|
||||||
{"exceptions", NULL},
|
{"exceptions", NULL},
|
||||||
|
|
||||||
/* This lives in gcmodule.c */
|
/* This lives in gcmodule.c */
|
||||||
{"gc", initgc},
|
{"gc", initgc},
|
||||||
|
|
||||||
/* This lives in _warnings.c */
|
/* This lives in _warnings.c */
|
||||||
{"_warnings", _PyWarnings_Init},
|
{"_warnings", _PyWarnings_Init},
|
||||||
|
|
||||||
/* Sentinel */
|
/* Sentinel */
|
||||||
{0, 0}
|
{0, 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue