diff options
author | Fred Drake <fdrake@acm.org> | 2001-03-02 16:46:42 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-03-02 16:46:42 (GMT) |
commit | 043d5e55142bee99a7e94031c94c1ca3afc3ad38 (patch) | |
tree | 301302e5701be570e58377c062d16e74deda82fe | |
parent | 043732e95d3653960be4e23a84dc6661683001c0 (diff) | |
download | cpython-043d5e55142bee99a7e94031c94c1ca3afc3ad38.zip cpython-043d5e55142bee99a7e94031c94c1ca3afc3ad38.tar.gz cpython-043d5e55142bee99a7e94031c94c1ca3afc3ad38.tar.bz2 |
For copyfile(), be explicit that src and dst are file names; that was only
implied.
-rw-r--r-- | Doc/lib/libshutil.tex | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/lib/libshutil.tex b/Doc/lib/libshutil.tex index ad96bd3..8ff5367 100644 --- a/Doc/lib/libshutil.tex +++ b/Doc/lib/libshutil.tex @@ -19,8 +19,9 @@ file type and creator codes will not be correct. \begin{funcdesc}{copyfile}{src, dst} - Copy the contents of \var{src} to \var{dst}. If \var{dst} exists, - it will be replaced, otherwise it will be created. + Copy the contents of the file named \var{src} to a file named + \var{dst}. If \var{dst} exists, it will be replaced, otherwise it + will be created. \end{funcdesc} \begin{funcdesc}{copyfileobj}{fsrc, fdst\optional{, length}} |