Changeset 391 for python/trunk/Lib/distutils/msvccompiler.py
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Lib/distutils/msvccompiler.py
r2 r391 9 9 # finding DevStudio (through the registry) 10 10 11 # This module should be kept compatible with Python 2.1. 12 13 __revision__ = "$Id: msvccompiler.py 62197 2008-04-07 01:53:39Z mark.hammond $" 14 15 import sys, os, string 16 from distutils.errors import \ 17 DistutilsExecError, DistutilsPlatformError, \ 18 CompileError, LibError, LinkError 19 from distutils.ccompiler import \ 20 CCompiler, gen_preprocess_options, gen_lib_options 11 __revision__ = "$Id$" 12 13 import sys 14 import os 15 import string 16 17 from distutils.errors import (DistutilsExecError, DistutilsPlatformError, 18 CompileError, LibError, LinkError) 19 from distutils.ccompiler import CCompiler, gen_lib_options 21 20 from distutils import log 22 21 … … 130 129 else: 131 130 self.set_macro("FrameworkSDKDir", net, "sdkinstallroot") 132 except KeyError , exc: #131 except KeyError: 133 132 raise DistutilsPlatformError, \ 134 133 ("""Python was built with Visual Studio 2003;
Note:
See TracChangeset
for help on using the changeset viewer.