From: Martin v. Löwis Date: Thu, 18 Feb 2010 09:22:20 +0000 (+0000) Subject: Stop providing crtassem.h symbols when compiling with X-Git-Tag: v2.7a4~180 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=413fabc070d9502f3057758b389cabca91b3fb1e;p=python Stop providing crtassem.h symbols when compiling with Visual Studio 2010, as msvcr100.dll is not a platform assembly anymore. --- diff --git a/Misc/NEWS b/Misc/NEWS index 4441e9288b..fbcb23af66 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -25,6 +25,11 @@ Library - 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 ----- diff --git a/PC/msvcrtmodule.c b/PC/msvcrtmodule.c index 6e804e454f..9764a02ab3 100755 --- a/PC/msvcrtmodule.c +++ b/PC/msvcrtmodule.c @@ -23,7 +23,7 @@ #include #ifdef _MSC_VER -#if _MSC_VER >= 1500 +#if _MSC_VER >= 1500 && _MSC_VER < 1600 #include #endif #endif