Raised as a signal to fallback on using raw read()/write() file copy when fast-copy functions fail to do so.
| 91 | and unpacking registries fails""" |
| 92 | |
| 93 | class _GiveupOnFastCopy(Exception): |
| 94 | """Raised as a signal to fallback on using raw read()/write() |
| 95 | file copy when fast-copy functions fail to do so. |
| 96 | """ |
| 97 | |
| 98 | def _fastcopy_fcopyfile(fsrc, fdst, flags): |
| 99 | """Copy a regular file content or metadata by using high-performance |
no outgoing calls
no test coverage detected
searching dependent graphs…