Test for executable file.
(path)
| 958 | |
| 959 | |
| 960 | def executable(path): |
| 961 | """Test for executable file.""" |
| 962 | return os.access(path, os.X_OK) |
| 963 | |
| 964 | |
| 965 | def _get_best_family(*address): |
nothing calls this directly
no test coverage detected
searching dependent graphs…