(x)
| 2805 | # -------------------------------------------------- command-line interface |
| 2806 | |
| 2807 | def ispath(x): |
| 2808 | return isinstance(x, str) and x.find(os.sep) >= 0 |
| 2809 | |
| 2810 | def _get_revised_path(given_path, argv0): |
| 2811 | """Ensures current directory is on returned path, and argv0 directory is not |