Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Format block comments. #639

Merged
merged 1 commit into from Jul 14, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions setuptools/site-patch.py
Expand Up @@ -10,7 +10,7 @@ def __boot():
pic = getattr(sys,'path_importer_cache',{})
stdpath = sys.path[len(PYTHONPATH):]
mydir = os.path.dirname(__file__)
#print "searching",stdpath,sys.path
# print "searching",stdpath,sys.path

for item in stdpath:
if item==mydir or not item:
Expand Down Expand Up @@ -39,7 +39,7 @@ def __boot():
else:
raise ImportError("Couldn't find the real 'site' module")

#print "loaded", __file__
# print "loaded", __file__

known_paths = dict([(makepath(item)[1],1) for item in sys.path]) # 2.2 comp

Expand Down
8 changes: 4 additions & 4 deletions setuptools/tests/environment.py
Expand Up @@ -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", ""):
Expand All @@ -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
2 changes: 1 addition & 1 deletion setuptools/tests/test_build_py.py
Expand Up @@ -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()