[Python-checkins] r88527 - python/branches/py3k/Python/dynload_dl.c

victor.stinner python-checkins at python.org
Wed Feb 23 12:29:29 CET 2011


Author: victor.stinner
Date: Wed Feb 23 12:29:28 2011
New Revision: 88527

Log:
dynload_dl.c: replace tabs by spaces

Modified:
   python/branches/py3k/Python/dynload_dl.c

Modified: python/branches/py3k/Python/dynload_dl.c
==============================================================================
--- python/branches/py3k/Python/dynload_dl.c	(original)
+++ python/branches/py3k/Python/dynload_dl.c	Wed Feb 23 12:29:28 2011
@@ -10,17 +10,17 @@
 extern char *Py_GetProgramName(void);
 
 const struct filedescr _PyImport_DynLoadFiletab[] = {
-	{".o", "rb", C_EXTENSION},
-	{"module.o", "rb", C_EXTENSION},
-	{0, 0}
+    {".o", "rb", C_EXTENSION},
+    {"module.o", "rb", C_EXTENSION},
+    {0, 0}
 };
 
 
 dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname,
-				    const char *pathname, FILE *fp)
+                                    const char *pathname, FILE *fp)
 {
-	char funcname[258];
+    char funcname[258];
 
-	PyOS_snprintf(funcname, sizeof(funcname), "PyInit_%.200s", shortname);
-	return dl_loadmod(Py_GetProgramName(), pathname, funcname);
+    PyOS_snprintf(funcname, sizeof(funcname), "PyInit_%.200s", shortname);
+    return dl_loadmod(Py_GetProgramName(), pathname, funcname);
 }


More information about the Python-checkins mailing list