Commit 3afc62e5 authored by Martin v. Löwis's avatar Martin v. Löwis

Merged revisions 78213 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78213 | martin.v.loewis | 2010-02-18 10:22:20 +0100 (Do, 18 Feb 2010) | 3 lines

  Stop providing crtassem.h symbols when compiling with
  Visual Studio 2010, as msvcr100.dll is not a platform
  assembly anymore.
........
parent 5d233fd6
......@@ -659,6 +659,9 @@ Library
Extension Modules
-----------------
- Stop providing crtassem.h symbols when compiling with Visual Studio 2010, as
msvcr100.dll is not a platform assembly anymore.
- Issue #6508: Add posix.{getresuid,getresgid,setresuid,setresgid}.
- Issue #7078: Set struct.__doc__ from _struct.__doc__.
......
......@@ -25,7 +25,7 @@
#include <windows.h>
#ifdef _MSC_VER
#if _MSC_VER >= 1500
#if _MSC_VER >= 1500 && _MSC_VER < 1600
#include <crtassem.h>
#endif
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment