Issue #15315: Support VS 2010 in distutils cygwincompiler.

This commit is contained in:
Martin v. Löwis 2012-07-10 07:07:06 +02:00
parent 2b9df89ff1
commit 7d30b80a4e
2 changed files with 5 additions and 0 deletions

View File

@ -78,6 +78,9 @@ def get_msvcr():
elif msc_ver == '1500':
# VS2008 / MSVC 9.0
return ['msvcr90']
elif msc_ver == '1600':
# VS2010 / MSVC 10.0
return ['msvcr100']
else:
raise ValueError("Unknown MS Compiler version %s " % msc_ver)

View File

@ -31,6 +31,8 @@ Core and Builtins
Library
-------
- Issue #15315: Support VS 2010 in distutils cygwincompiler.
- Issue #15294: Fix a regression in pkgutil.extend_path()'s handling of
nested namespace packages.