changeset: 71416:33f09733612e branch: 2.7 parent: 71411:3fa7581f6d46 user: Senthil Kumaran date: Tue Jul 19 08:05:44 2011 +0800 files: Doc/library/shutil.rst description: merge from 3.2 - Fix closes issue12577 - clarify shutil.move documentation. Patch suggestion by Catalin Iacob diff -r 3fa7581f6d46 -r 33f09733612e Doc/library/shutil.rst --- a/Doc/library/shutil.rst Tue Jul 19 01:26:58 2011 +0200 +++ b/Doc/library/shutil.rst Tue Jul 19 08:05:44 2011 +0800 @@ -163,8 +163,10 @@ Recursively move a file or directory to another location. - If the destination is on the current filesystem, then simply use rename. - Otherwise, copy src (with :func:`copy2`) to the dst and then remove src. + Uses :func:`os.rename` to perform the move. If it fails, for reasons such as + 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*. .. versionadded:: 2.3

AltStyle によって変換されたページ (->オリジナル) /