(fn)
| 275 | os.path.normcase(os.path.abspath(dst))) |
| 276 | |
| 277 | def _stat(fn): |
| 278 | return fn.stat() if isinstance(fn, os.DirEntry) else os.stat(fn) |
| 279 | |
| 280 | def _islink(fn): |
| 281 | return fn.is_symlink() if isinstance(fn, os.DirEntry) else os.path.islink(fn) |
no test coverage detected
searching dependent graphs…