Raised as a signal to fallback on using raw read()/write() file copy when fast-copy functions fail to do so.
| 79 | and unpacking registries fails""" |
| 80 | |
| 81 | class _GiveupOnFastCopy(Exception): |
| 82 | """Raised as a signal to fallback on using raw read()/write() |
| 83 | file copy when fast-copy functions fail to do so. |
| 84 | """ |
| 85 | |
| 86 | def _fastcopy_fcopyfile(fsrc, fdst, flags): |
| 87 | """Copy a regular file content or metadata by using high-performance |
no outgoing calls
no test coverage detected