(src, dst)
| 875 | return real_dst |
| 876 | |
| 877 | def _destinsrc(src, dst): |
| 878 | src = os.path.abspath(src) |
| 879 | dst = os.path.abspath(dst) |
| 880 | if not src.endswith(os.path.sep): |
| 881 | src += os.path.sep |
| 882 | if not dst.endswith(os.path.sep): |
| 883 | dst += os.path.sep |
| 884 | return dst.startswith(src) |
| 885 | |
| 886 | def _is_immutable(src): |
| 887 | st = _stat(src) |
no test coverage detected