Commit f5473774 authored by Jason R. Coombs's avatar Jason R. Coombs

Add docstring

parent 1f261491
...@@ -34,6 +34,9 @@ DEFAULT_VERSION = "2.2" ...@@ -34,6 +34,9 @@ DEFAULT_VERSION = "2.2"
DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/" DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/"
def _python_cmd(*args): def _python_cmd(*args):
"""
Return True if the command succeeded.
"""
args = (sys.executable,) + args args = (sys.executable,) + args
return subprocess.call(args) == 0 return subprocess.call(args) == 0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment