summaryrefslogtreecommitdiff
path: root/Doc/library/shutil.rst
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-01-10 03:26:08 +0000
committerRaymond Hettinger <python@rcn.com>2011-01-10 03:26:08 +0000
commit10480940373492652bc285fca3fa74751c271645 (patch)
treebb1bfed3416120cc371eb884960cf73aad9a957e /Doc/library/shutil.rst
parenta4815caa7ccf21aa994d0e0eec66873072f0e352 (diff)
downloadcpython-git-10480940373492652bc285fca3fa74751c271645.tar.gz
Move source links to consistent location and remove wordy, big yellow boxes.
Diffstat (limited to 'Doc/library/shutil.rst')
-rw-r--r--Doc/library/shutil.rst9
1 files changed, 3 insertions, 6 deletions
diff --git a/Doc/library/shutil.rst b/Doc/library/shutil.rst
index 0144876719..759dab1328 100644
--- a/Doc/library/shutil.rst
+++ b/Doc/library/shutil.rst
@@ -10,20 +10,17 @@
single: file; copying
single: copying files
+**Source code:** :source:`Lib/shutil.py`
+
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. For operations on individual files, see also the
:mod:`os` module.
-.. seealso::
-
- Latest version of the :source:`shutil module Python source code
- <Lib/shutil.py>`
-
.. warning::
Even the higher-level file copying functions (:func:`copy`, :func:`copy2`)
- can't copy all file metadata.
+ cannot copy all file metadata.
On POSIX platforms, this means that file owner and group are lost as well
as ACLs. On Mac OS, the resource fork and other metadata are not used.