(path)
| 186 | |
| 187 | |
| 188 | def _safe_realpath(path): |
| 189 | try: |
| 190 | return realpath(path) |
| 191 | except OSError: |
| 192 | return path |
| 193 | |
| 194 | if sys.executable: |
| 195 | _PROJECT_BASE = os.path.dirname(_safe_realpath(sys.executable)) |
no test coverage detected
searching dependent graphs…