diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-05-29 21:11:05 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-05-29 21:11:05 (GMT) |
commit | 53d7c14bf9eda53a305518e9ca1a3ded2a8f5b07 (patch) | |
tree | 8682c35462f7b1cf196727535507be49466bc17e | |
parent | 3e2d67e01a53c755667bfe2fc68cc5163c7d8d1a (diff) | |
download | cpython-53d7c14bf9eda53a305518e9ca1a3ded2a8f5b07.zip cpython-53d7c14bf9eda53a305518e9ca1a3ded2a8f5b07.tar.gz cpython-53d7c14bf9eda53a305518e9ca1a3ded2a8f5b07.tar.bz2 |
Merged revisions 81604 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r81604 | mark.dickinson | 2010-05-29 22:05:27 +0100 (Sat, 29 May 2010) | 9 lines
Merged revisions 81602 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r81602 | mark.dickinson | 2010-05-29 22:00:52 +0100 (Sat, 29 May 2010) | 1 line
Untabify Modules/config.c.in.
........
................
-rw-r--r-- | Modules/config.c.in | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index 5d8f5a9..3fb5dd3 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -34,28 +34,28 @@ 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", PyInit_imp}, + /* This lives in import.c */ + {"imp", PyInit_imp}, - /* This lives in Python/Python-ast.c */ - {"_ast", PyInit__ast}, + /* This lives in Python/Python-ast.c */ + {"_ast", PyInit__ast}, - /* These entries are here for sys.builtin_module_names */ - {"__main__", NULL}, - {"builtins", NULL}, - {"sys", NULL}, + /* These entries are here for sys.builtin_module_names */ + {"__main__", NULL}, + {"builtins", NULL}, + {"sys", NULL}, - /* This lives in gcmodule.c */ - {"gc", PyInit_gc}, + /* This lives in gcmodule.c */ + {"gc", PyInit_gc}, - /* This lives in _warnings.c */ - {"_warnings", _PyWarnings_Init}, + /* This lives in _warnings.c */ + {"_warnings", _PyWarnings_Init}, - /* Sentinel */ - {0, 0} + /* Sentinel */ + {0, 0} }; |