(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) |
| 282 | |
| 283 | def copyfile(src, dst, *, follow_symlinks=True): |
| 284 | """Copy data from src to dst in the most efficient way possible. |
no test coverage detected
searching dependent graphs…