(fn)
| 218 | os.path.normcase(os.path.abspath(dst))) |
| 219 | |
| 220 | def _stat(fn): |
| 221 | return fn.stat() if isinstance(fn, os.DirEntry) else os.stat(fn) |
| 222 | |
| 223 | def _islink(fn): |
| 224 | return fn.is_symlink() if isinstance(fn, os.DirEntry) else os.path.islink(fn) |
no test coverage detected