aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-01-01 11:23:57 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-01-01 11:23:57 -0500
commit64b8fc3f09adb0843bae6f118da8147b8697e4dd (patch)
tree2a834f483910d91719fdd10e38916159d01bc413
parent506d6f75a02e7943efbada210798c4798fb89835 (diff)
downloadexternal_python_setuptools-64b8fc3f09adb0843bae6f118da8147b8697e4dd.tar.gz
external_python_setuptools-64b8fc3f09adb0843bae6f118da8147b8697e4dd.tar.bz2
external_python_setuptools-64b8fc3f09adb0843bae6f118da8147b8697e4dd.zip
Reindent for clarity
-rw-r--r--setuptools/tests/test_windows_wrappers.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/setuptools/tests/test_windows_wrappers.py b/setuptools/tests/test_windows_wrappers.py
index 70e23a40..b6c1e573 100644
--- a/setuptools/tests/test_windows_wrappers.py
+++ b/setuptools/tests/test_windows_wrappers.py
@@ -89,8 +89,14 @@ class TestCLI(WrapperTester):
by preceding each of them with back slashes.
"""
self.create_script(tmpdir)
- cmd = [str(tmpdir / 'foo.exe'), 'arg1', 'arg 2',
- 'arg "2\\"', 'arg 4\\', 'arg5 a\\\\b']
+ cmd = [
+ str(tmpdir / 'foo.exe'),
+ 'arg1',
+ 'arg 2',
+ 'arg "2\\"',
+ 'arg 4\\',
+ 'arg5 a\\\\b',
+ ]
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stdin=subprocess.PIPE)
stdout, stderr = proc.communicate('hello\nworld\n'.encode('ascii'))
actual = stdout.decode('ascii').replace('\r\n', '\n')