mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #15315: Support VS 2010 in distutils cygwincompiler.
This commit is contained in:
parent
2b9df89ff1
commit
7d30b80a4e
2 changed files with 5 additions and 0 deletions
|
@ -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)
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue