Author: amaury.forgeotdarc
Date: Sat Nov 10 14:55:44 2007
New Revision: 58928

Modified:
   python/branches/py3k/Python/sysmodule.c
Log:
No need to include windows.h twice


Modified: python/branches/py3k/Python/sysmodule.c
==============================================================================
--- python/branches/py3k/Python/sysmodule.c     (original)
+++ python/branches/py3k/Python/sysmodule.c     Sat Nov 10 14:55:44 2007
@@ -23,7 +23,7 @@
 
 #ifdef MS_WINDOWS
 #define WIN32_LEAN_AND_MEAN
-#include "windows.h"
+#include <windows.h>
 #endif /* MS_WINDOWS */
 
 #ifdef MS_COREDLL
@@ -36,10 +36,6 @@
 #include <unixlib.h>
 #endif
 
-#ifdef MS_WINDOWS
-#include <windows.h>
-#endif
-
 #ifdef HAVE_LANGINFO_H
 #include <locale.h>
 #include <langinfo.h>
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to