Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 52e40cd

Browse files
committed
Whitespace fixes to make the commit hook on hg.python.org happy.
1 parent ded28e3 commit 52e40cd

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/distutils/_msvccompiler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def _get_vc_env(plat_spec):
100100
(line.partition('=') for line in out.splitlines())
101101
if key and value
102102
}
103-
103+
104104
if vcruntime:
105105
env['py_vcruntime_redist'] = vcruntime
106106
return env
@@ -236,7 +236,7 @@ def initialize(self, plat_name=None):
236236
'/nologo', '/Ox', '/W3', '/GL', '/DNDEBUG'
237237
]
238238
self.compile_options.append('/MD' if self._vcruntime_redist else '/MT')
239-
239+
240240
self.compile_options_debug = [
241241
'/nologo', '/Od', '/MDd', '/Zi', '/W3', '/D_DEBUG'
242242
]

Lib/distutils/tests/test_msvccompiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def test_vcruntime_skip_copy(self):
7777
compiler.initialize()
7878
dll = compiler._vcruntime_redist
7979
self.assertTrue(os.path.isfile(dll))
80-
80+
8181
compiler._copy_vcruntime(tempdir)
8282

8383
self.assertFalse(os.path.isfile(os.path.join(

0 commit comments

Comments
 (0)