[Python-checkins] r78213 - in python/trunk: Misc/NEWS PC/msvcrtmodule.c

martin.v.loewis python-checkins at python.org
Thu Feb 18 10:22:21 CET 2010


Author: martin.v.loewis
Date: Thu Feb 18 10:22:20 2010
New Revision: 78213

Log:
Stop providing crtassem.h symbols when compiling with 
Visual Studio 2010, as msvcr100.dll is not a platform 
assembly anymore.

Modified:
   python/trunk/Misc/NEWS
   python/trunk/PC/msvcrtmodule.c

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Thu Feb 18 10:22:20 2010
@@ -25,6 +25,11 @@
 - Issue 7588: ``unittest.TextTestResult.getDescription`` now includes the test
   name in failure reports even if the test has a docstring.
 
+Extension Modules
+-----------------
+
+- Stop providing crtassem.h symbols when compiling with Visual Studio 2010, as
+  msvcr100.dll is not a platform assembly anymore.
 
 Tests
 -----

Modified: python/trunk/PC/msvcrtmodule.c
==============================================================================
--- python/trunk/PC/msvcrtmodule.c	(original)
+++ python/trunk/PC/msvcrtmodule.c	Thu Feb 18 10:22:20 2010
@@ -23,7 +23,7 @@
 #include <sys/locking.h>
 
 #ifdef _MSC_VER
-#if _MSC_VER >= 1500
+#if _MSC_VER >= 1500 && _MSC_VER < 1600
 #include <crtassem.h>
 #endif
 #endif


More information about the Python-checkins mailing list