]> granicus.if.org Git - python/commitdiff
Untabify Modules/config.c.in.
authorMark Dickinson <dickinsm@gmail.com>
Sat, 29 May 2010 21:00:52 +0000 (21:00 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Sat, 29 May 2010 21:00:52 +0000 (21:00 +0000)
Modules/config.c.in

index d5ca10f89d763ccc406c66fa9bdb564146568b3a..faa427ace25eda71fe1a8bd8840de7c017cc737a 100644 (file)
@@ -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
-