diff options
author | Fred Drake <fdrake@acm.org> | 1999-04-21 17:08:51 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-04-21 17:08:51 +0000 |
commit | 11bc8cfee33456198acdaca53a4ba17f29e728b8 (patch) | |
tree | 20f4811e68d0adbd0d737e313141a03b736414e7 | |
parent | e688aec7078869ed704d7b5c61ed13502c5e5dd4 (diff) | |
download | cpython-git-11bc8cfee33456198acdaca53a4ba17f29e728b8.tar.gz |
Explain *why* the copytree() implementation is presented as the
example!
-rw-r--r-- | Doc/lib/libshutil.tex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/lib/libshutil.tex b/Doc/lib/libshutil.tex index f55c517a1a..1f3f6d863c 100644 --- a/Doc/lib/libshutil.tex +++ b/Doc/lib/libshutil.tex @@ -81,7 +81,8 @@ file type and creator codes will not be correct. \subsection{Example \label{shutil-example}} This example is the implementation of the \function{copytree()} -function, described above, with the docstring omitted. +function, described above, with the docstring omitted. It +demonstrates many of the other functions provided by this module. \begin{verbatim} def copytree(src, dst, symlinks=0): |