Moved include "Python.h" in front of other imports to silence a warning.

This commit is contained in:
Christian Heimes 2008-01-04 03:15:05 +00:00
parent 76d19f68e4
commit 123d5c9396

View file

@ -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>