Changeset 391 for python/trunk/Lib/distutils/bcppcompiler.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/bcppcompiler.py
r2 r391 12 12 # WindowsCCompiler! --GPW 13 13 14 # This module should be kept compatible with Python 2.1. 15 16 __revision__ = "$Id: bcppcompiler.py 61000 2008-02-23 17:40:11Z christian.heimes $" 17 14 __revision__ = "$Id$" 18 15 19 16 import os 20 from distutils.errors import \ 21 DistutilsExecError, DistutilsPlatformError, \ 22 CompileError, LibError, LinkError, UnknownFileError 23 from distutils.ccompiler import \ 24 CCompiler, gen_preprocess_options, gen_lib_options 17 18 from distutils.errors import (DistutilsExecError, CompileError, LibError, 19 LinkError, UnknownFileError) 20 from distutils.ccompiler import CCompiler, gen_preprocess_options 25 21 from distutils.file_util import write_file 26 22 from distutils.dep_util import newer
Note:
See TracChangeset
for help on using the changeset viewer.