[Python-checkins] cpython (3.5): Whitespace fixes to make the commit hook on hg.python.org happy.

larry.hastings python-checkins at python.org
Wed Sep 9 15:56:42 CEST 2015


https://hg.python.org/cpython/rev/7eef1e886138
changeset:   97824:7eef1e886138
branch:      3.5
user:        Larry Hastings <larry at hastings.org>
date:        Wed Sep 09 06:54:57 2015 -0700
summary:
  Whitespace fixes to make the commit hook on hg.python.org happy.

files:
  Lib/distutils/_msvccompiler.py           |  4 ++--
  Lib/distutils/tests/test_msvccompiler.py |  2 +-
  2 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Lib/distutils/_msvccompiler.py b/Lib/distutils/_msvccompiler.py
--- a/Lib/distutils/_msvccompiler.py
+++ b/Lib/distutils/_msvccompiler.py
@@ -100,7 +100,7 @@
         (line.partition('=') for line in out.splitlines())
         if key and value
     }
-    
+
     if vcruntime:
         env['py_vcruntime_redist'] = vcruntime
     return env
@@ -236,7 +236,7 @@
             '/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'
         ]
diff --git a/Lib/distutils/tests/test_msvccompiler.py b/Lib/distutils/tests/test_msvccompiler.py
--- a/Lib/distutils/tests/test_msvccompiler.py
+++ b/Lib/distutils/tests/test_msvccompiler.py
@@ -77,7 +77,7 @@
         compiler.initialize()
         dll = compiler._vcruntime_redist
         self.assertTrue(os.path.isfile(dll))
-        
+
         compiler._copy_vcruntime(tempdir)
 
         self.assertFalse(os.path.isfile(os.path.join(

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list