You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pathlib ABCs: yield progress reports from WritablePath._copy_from()
Make `WritablePath._copy_from()` yield `(target, source, part_size)`
tuples when copying files and directories. A tuple with `part_size=0` is
emitted for every path encountered, and further tuples with `part_size>0`
**may** be emitted when copying regular files.
This should allow `anyio.Path` to wrap `_copy_from()` and make it
cancelable.
0 commit comments