To support metadata transfers, we need to add a method to WritablePath that allows receivers to copy metadata from some ReadablePath source. Currently we have _copy_from(), but it's got an underscore prefix.
This will affect pathlib.Path
Perhaps the method should return an iterator that emits progress reports? If so can someone come up with a better name than iter_copy_from()? :)
See also python/cpython#131636
To support metadata transfers, we need to add a method to
WritablePaththat allows receivers to copy metadata from someReadablePathsource. Currently we have_copy_from(), but it's got an underscore prefix.This will affect
pathlib.PathPerhaps the method should return an iterator that emits progress reports? If so can someone come up with a better name than
iter_copy_from()? :)See also python/cpython#131636