diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-12-09 02:03:03 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-12-09 02:03:03 (GMT) |
commit | d729aada6a52c86fe6ec9150cb6ef3f7efedf0a5 (patch) | |
tree | 1049c0b0c54f14bd698eaab40680094b8be68e3e /Doc | |
parent | 2d873bd68b400e056e77790ca72cc7a7d8a5d07c (diff) | |
download | cpython-d729aada6a52c86fe6ec9150cb6ef3f7efedf0a5.zip cpython-d729aada6a52c86fe6ec9150cb6ef3f7efedf0a5.tar.gz cpython-d729aada6a52c86fe6ec9150cb6ef3f7efedf0a5.tar.bz2 |
specify how things are copied
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/shutil.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/shutil.rst b/Doc/library/shutil.rst index b409bb7..7baff30 100644 --- a/Doc/library/shutil.rst +++ b/Doc/library/shutil.rst @@ -156,7 +156,7 @@ copying and removal. For operations on individual files, see also the Recursively move a file or directory to another location. If the destination is on the current filesystem, then simply use rename. - Otherwise, copy src to the dst and then remove src. + Otherwise, copy src (with :func:`copy2`) to the dst and then remove src. .. versionadded:: 2.3 |