]> granicus.if.org Git - python/commitdiff
Whitespace fixes to make the commit hook on hg.python.org happy.
authorLarry Hastings <larry@hastings.org>
Wed, 9 Sep 2015 13:54:57 +0000 (06:54 -0700)
committerLarry Hastings <larry@hastings.org>
Wed, 9 Sep 2015 13:54:57 +0000 (06:54 -0700)
Lib/distutils/_msvccompiler.py
Lib/distutils/tests/test_msvccompiler.py

index 82b78a0ffe43630a9af983bcf6d02335ac45ecec..03a5f10ee782842fb571e2b45857c1408eaa9c29 100644 (file)
@@ -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'
         ]
index 874d6035e8d6ae0be1d82d1bde65967dcd475d45..c4d911ff8380e37a2fd98c27d6715d555b78faac 100644 (file)
@@ -77,7 +77,7 @@ class msvccompilerTestCase(support.TempdirManager,
         compiler.initialize()
         dll = compiler._vcruntime_redist
         self.assertTrue(os.path.isfile(dll))
-        
+
         compiler._copy_vcruntime(tempdir)
 
         self.assertFalse(os.path.isfile(os.path.join(