diff options
author | Guido van Rossum <guido@python.org> | 2007-08-17 00:24:54 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-08-17 00:24:54 (GMT) |
commit | da27fd267346e213512f4835dd0b7b40e6172bbe (patch) | |
tree | 8f9f7dbafb09976c7dbe412992e9270f62455246 /Doc/library/shutil.rst | |
parent | af554a0e17ceb0e6a3cc0c07e9cf6db2f80c1ad9 (diff) | |
download | cpython-da27fd267346e213512f4835dd0b7b40e6172bbe.zip cpython-da27fd267346e213512f4835dd0b7b40e6172bbe.tar.gz cpython-da27fd267346e213512f4835dd0b7b40e6172bbe.tar.bz2 |
Manually patched a few things that didn't get merged in, but should.
Diffstat (limited to 'Doc/library/shutil.rst')
-rw-r--r-- | Doc/library/shutil.rst | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Doc/library/shutil.rst b/Doc/library/shutil.rst index ef0758d..31d898a 100644 --- a/Doc/library/shutil.rst +++ b/Doc/library/shutil.rst @@ -17,9 +17,11 @@ The :mod:`shutil` module offers a number of high-level operations on files and collections of files. In particular, functions are provided which support file copying and removal. -**Caveat:** On MacOS, the resource fork and other metadata are not used. For -file copies, this means that resources will be lost and file type and creator -codes will not be correct. +.. warning:: + + On MacOS, the resource fork and other metadata are not used. For file copies, + this means that resources will be lost and file type and creator codes will + not be correct. .. function:: copyfile(src, dst) |