[Python-checkins] r81603 - in python/branches/release26-maint: Modules/config.c.in

mark.dickinson python-checkins at python.org
Sat May 29 23:03:14 CEST 2010


Author: mark.dickinson
Date: Sat May 29 23:03:13 2010
New Revision: 81603

Log:
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.
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Modules/config.c.in

Modified: python/branches/release26-maint/Modules/config.c.in
==============================================================================
--- python/branches/release26-maint/Modules/config.c.in	(original)
+++ python/branches/release26-maint/Modules/config.c.in	Sat May 29 23:03:13 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