diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-05-29 21:00:52 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-05-29 21:00:52 (GMT) |
commit | ddac33882b7c51c4b0770fd39adaee33dfcd9a1c (patch) | |
tree | a4f82a6c642ae6e6f7047dcdefa6d35188bf23c2 | |
parent | 3d08d884597f8a5b3fa3ef4ea36ce849ed849b3a (diff) | |
download | cpython-ddac33882b7c51c4b0770fd39adaee33dfcd9a1c.zip cpython-ddac33882b7c51c4b0770fd39adaee33dfcd9a1c.tar.gz cpython-ddac33882b7c51c4b0770fd39adaee33dfcd9a1c.tar.bz2 |
Untabify Modules/config.c.in.
-rw-r--r-- | Modules/config.c.in | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index d5ca10f..faa427a 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -34,33 +34,32 @@ struct _inittab _PyImport_Inittab[] = { /* -- ADDMODULE MARKER 2 -- */ - /* This module lives in marshal.c */ - {"marshal", PyMarshal_Init}, + /* This module lives in marshal.c */ + {"marshal", PyMarshal_Init}, - /* This lives in import.c */ - {"imp", initimp}, + /* This lives in import.c */ + {"imp", initimp}, - /* This lives in Python/Python-ast.c */ - {"_ast", init_ast}, + /* This lives in Python/Python-ast.c */ + {"_ast", init_ast}, - /* These entries are here for sys.builtin_module_names */ - {"__main__", NULL}, - {"__builtin__", NULL}, - {"sys", NULL}, - {"exceptions", NULL}, + /* These entries are here for sys.builtin_module_names */ + {"__main__", NULL}, + {"__builtin__", NULL}, + {"sys", NULL}, + {"exceptions", NULL}, - /* This lives in gcmodule.c */ - {"gc", initgc}, + /* This lives in gcmodule.c */ + {"gc", initgc}, - /* This lives in _warnings.c */ - {"_warnings", _PyWarnings_Init}, + /* This lives in _warnings.c */ + {"_warnings", _PyWarnings_Init}, - /* Sentinel */ - {0, 0} + /* Sentinel */ + {0, 0} }; #ifdef __cplusplus } #endif - |