GH-73991: Add pathlib.Path.move that can handle rename across FS by oz123 · Pull Request #30650 · python/cpython
With this change, ``pathlib.Path.move`` adds the ability to handle renaming across file system and also preserve metadata when renaming, since ``shutil.move`` using ``shutil.copy2`` is used under the hood.