[Python-checkins] r81602 - python/trunk/Modules/config.c.in

mark.dickinson python-checkins at python.org
Sat May 29 23:00:52 CEST 2010


Author: mark.dickinson
Date: Sat May 29 23:00:52 2010
New Revision: 81602

Log:
Untabify Modules/config.c.in.

Modified:
   python/trunk/Modules/config.c.in

Modified: python/trunk/Modules/config.c.in
==============================================================================
--- python/trunk/Modules/config.c.in	(original)
+++ python/trunk/Modules/config.c.in	Sat May 29 23:00:52 2010
@@ -34,33 +34,32 @@
 
 /* -- 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
-


More information about the Python-checkins mailing list