diff options
author | Georg Brandl <georg@python.org> | 2007-08-15 19:06:04 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-08-15 19:06:04 (GMT) |
commit | bf863b17f0f67453fe07c4eb57cbede1ee0f6d3f (patch) | |
tree | d92dbf71aa544a8d728906de64be9bf5b46e9be0 /Doc/library/shutil.rst | |
parent | 7f758c49fa9a20df696c0447b14dd4fb75e83662 (diff) | |
download | cpython-bf863b17f0f67453fe07c4eb57cbede1ee0f6d3f.zip cpython-bf863b17f0f67453fe07c4eb57cbede1ee0f6d3f.tar.gz cpython-bf863b17f0f67453fe07c4eb57cbede1ee0f6d3f.tar.bz2 |
Replace "Caveat" paragraphs by .. warning::s.
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 7ed70af..8cc27d4 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) |