mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Stop providing crtassem.h symbols when compiling with
Visual Studio 2010, as msvcr100.dll is not a platform assembly anymore.
This commit is contained in:
parent
6f9030329c
commit
413fabc070
2 changed files with 6 additions and 1 deletions
|
|
@ -25,6 +25,11 @@ Library
|
||||||
- Issue 7588: ``unittest.TextTestResult.getDescription`` now includes the test
|
- Issue 7588: ``unittest.TextTestResult.getDescription`` now includes the test
|
||||||
name in failure reports even if the test has a docstring.
|
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
|
Tests
|
||||||
-----
|
-----
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
#include <sys/locking.h>
|
#include <sys/locking.h>
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
#if _MSC_VER >= 1500
|
#if _MSC_VER >= 1500 && _MSC_VER < 1600
|
||||||
#include <crtassem.h>
|
#include <crtassem.h>
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue