diff options
author | Larry Hastings <larry@hastings.org> | 2015-09-09 13:54:57 (GMT) |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2015-09-09 13:54:57 (GMT) |
commit | 52e40cd9ecfc815973583bdfff2ec8650e6114a1 (patch) | |
tree | eb254bfcf211e84744943135fe957507f0bda44d /Lib/distutils/_msvccompiler.py | |
parent | ded28e386349f9cd3cb883d9873d9d10ffabe86f (diff) | |
download | cpython-52e40cd9ecfc815973583bdfff2ec8650e6114a1.zip cpython-52e40cd9ecfc815973583bdfff2ec8650e6114a1.tar.gz cpython-52e40cd9ecfc815973583bdfff2ec8650e6114a1.tar.bz2 |
Whitespace fixes to make the commit hook on hg.python.org happy.
Diffstat (limited to 'Lib/distutils/_msvccompiler.py')
-rw-r--r-- | Lib/distutils/_msvccompiler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/_msvccompiler.py b/Lib/distutils/_msvccompiler.py index 82b78a0..03a5f10 100644 --- a/Lib/distutils/_msvccompiler.py +++ b/Lib/distutils/_msvccompiler.py @@ -100,7 +100,7 @@ def _get_vc_env(plat_spec): (line.partition('=') for line in out.splitlines()) if key and value } - + if vcruntime: env['py_vcruntime_redist'] = vcruntime return env @@ -236,7 +236,7 @@ class MSVCCompiler(CCompiler) : '/nologo', '/Ox', '/W3', '/GL', '/DNDEBUG' ] self.compile_options.append('/MD' if self._vcruntime_redist else '/MT') - + self.compile_options_debug = [ '/nologo', '/Od', '/MDd', '/Zi', '/W3', '/D_DEBUG' ] |