(src, dst)
| 940 | return real_dst |
| 941 | |
| 942 | def _destinsrc(src, dst): |
| 943 | src = os.path.abspath(src) |
| 944 | dst = os.path.abspath(dst) |
| 945 | if not src.endswith(os.path.sep): |
| 946 | src += os.path.sep |
| 947 | if not dst.endswith(os.path.sep): |
| 948 | dst += os.path.sep |
| 949 | return dst.startswith(src) |
| 950 | |
| 951 | def _is_immutable(src): |
| 952 | st = _stat(src) |
no test coverage detected
searching dependent graphs…