(name)
| 47 | |
| 48 | |
| 49 | def _executable_exists(name): |
| 50 | # Find out if an executable program named `name` is reachable: |
| 51 | return subprocess.call(['which', name], stdout=subprocess.PIPE, stderr=subprocess.PIPE) == 0 |
| 52 | |
| 53 | |
| 54 | def programSelect(*args): |
no outgoing calls
no test coverage detected