(x)
| 2709 | # -------------------------------------------------- command-line interface |
| 2710 | |
| 2711 | def ispath(x): |
| 2712 | return isinstance(x, str) and x.find(os.sep) >= 0 |
| 2713 | |
| 2714 | def _get_revised_path(given_path, argv0): |
| 2715 | """Ensures current directory is on returned path, and argv0 directory is not |