diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2014-01-26 20:08:10 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-01-26 20:08:10 -0500 |
| commit | f547377479ff30d39a121b3ba1b753dcaf544eb2 (patch) | |
| tree | 0076629fd45fd79e85695bc6e4ece53198a5e2b2 | |
| parent | 1f261491243925164a2ff93be8a2e5c61b23a1e2 (diff) | |
| download | python-setuptools-git-f547377479ff30d39a121b3ba1b753dcaf544eb2.tar.gz | |
Add docstring
| -rw-r--r-- | ez_setup.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ez_setup.py b/ez_setup.py index a781d1d2..1420c114 100644 --- a/ez_setup.py +++ b/ez_setup.py @@ -34,6 +34,9 @@ DEFAULT_VERSION = "2.2" DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/" def _python_cmd(*args): + """ + Return True if the command succeeded. + """ args = (sys.executable,) + args return subprocess.call(args) == 0 |
