Fix closes issue12577 - clarify shutil.move documentation. Patch suggestion by Catalin Iacob

This commit is contained in:
Senthil Kumaran 2011-07-19 08:03:02 +08:00
parent 0e752dd3f8
commit ae4a78b0a8

View file

@ -161,8 +161,10 @@ Directory and files operations
Recursively move a file or directory to another location. Recursively move a file or directory to another location.
If the destination is on the current filesystem, then simply use rename. Uses :func:`os.rename` to perform the move. If it fails, for reasons such as
Otherwise, copy src (with :func:`copy2`) to the dst and then remove src. when *src* and *dst* are on different filesystems or in case of windows where
rename is not supported when *dst* exists, fallback to copying *src* (with
:func:`copy2`) to the *dst* and then remove *src*.
.. exception:: Error .. exception:: Error