(path, /, *, strict=False)
| 558 | except ImportError: |
| 559 | # realpath is a no-op on systems without _getfinalpathname support. |
| 560 | def realpath(path, /, *, strict=False): |
| 561 | return abspath(path) |
| 562 | else: |
| 563 | def _readlink_deep(path, ignored_error=OSError): |
| 564 | # These error codes indicate that we should stop reading links and |
searching dependent graphs…