[Python-checkins] r59704 - python/trunk/Python/dynload_win.c

christian.heimes python-checkins at python.org
Fri Jan 4 04:15:05 CET 2008


Author: christian.heimes
Date: Fri Jan  4 04:15:05 2008
New Revision: 59704

Modified:
   python/trunk/Python/dynload_win.c
Log:
Moved include "Python.h" in front of other imports to silence a warning.

Modified: python/trunk/Python/dynload_win.c
==============================================================================
--- python/trunk/Python/dynload_win.c	(original)
+++ python/trunk/Python/dynload_win.c	Fri Jan  4 04:15:05 2008
@@ -1,12 +1,13 @@
 
 /* Support for dynamic loading of extension modules */
 
+#include "Python.h"
+
 #ifdef HAVE_DIRECT_H
 #include <direct.h>
 #endif
 #include <ctype.h>
 
-#include "Python.h"
 #include "importdl.h"
 #include <windows.h>
 


More information about the Python-checkins mailing list