diff options
author | stepshal <nessento@openmailbox.org> | 2016-07-13 14:49:35 +0700 |
---|---|---|
committer | stepshal <nessento@openmailbox.org> | 2016-07-13 14:49:35 +0700 |
commit | f1e3a3fc4199c80e1eca7af0d1bd10544faf1542 (patch) | |
tree | 5333ba6070baa84751b9620c877e7da5a0ff40a4 /setuptools/tests | |
parent | e3e21fd3d608d72ebe1ba2e4d2b3a59fbca76554 (diff) | |
download | external_python_setuptools-f1e3a3fc4199c80e1eca7af0d1bd10544faf1542.tar.gz external_python_setuptools-f1e3a3fc4199c80e1eca7af0d1bd10544faf1542.tar.bz2 external_python_setuptools-f1e3a3fc4199c80e1eca7af0d1bd10544faf1542.zip |
Format block comments.
Diffstat (limited to 'setuptools/tests')
-rw-r--r-- | setuptools/tests/environment.py | 8 | ||||
-rw-r--r-- | setuptools/tests/test_build_py.py | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/setuptools/tests/environment.py b/setuptools/tests/environment.py index a23c0504..e5237721 100644 --- a/setuptools/tests/environment.py +++ b/setuptools/tests/environment.py @@ -25,11 +25,11 @@ def run_setup_py(cmd, pypath=None, path=None, for envname in os.environ: env[envname] = os.environ[envname] - #override the python path if needed + # override the python path if needed if pypath is not None: env["PYTHONPATH"] = pypath - #overide the execution path if needed + # overide the execution path if needed if path is not None: env["PATH"] = path if not env.get("PATH", ""): @@ -50,11 +50,11 @@ def run_setup_py(cmd, pypath=None, path=None, except OSError: return 1, '' - #decode the console string if needed + # decode the console string if needed if hasattr(data, "decode"): # use the default encoding data = data.decode() data = unicodedata.normalize('NFC', data) - #communciate calls wait() + # communciate calls wait() return proc.returncode, data diff --git a/setuptools/tests/test_build_py.py b/setuptools/tests/test_build_py.py index ed1703ac..860c569c 100644 --- a/setuptools/tests/test_build_py.py +++ b/setuptools/tests/test_build_py.py @@ -26,6 +26,6 @@ def test_directories_in_package_data_glob(tmpdir_as_cwd): package_data={'': ['path/*']}, )) os.makedirs('path/subpath') - #with contexts.quiet(): + # with contexts.quiet(): dist.parse_command_line() dist.run_commands() |