(x)
| 2757 | # -------------------------------------------------- command-line interface |
| 2758 | |
| 2759 | def ispath(x): |
| 2760 | return isinstance(x, str) and x.find(os.sep) >= 0 |
| 2761 | |
| 2762 | def _get_revised_path(given_path, argv0): |
| 2763 | """Ensures current directory is on returned path, and argv0 directory is not |
no test coverage detected