]> granicus.if.org Git - python/commitdiff
For copyfile(), be explicit that src and dst are file names; that was only
authorFred Drake <fdrake@acm.org>
Fri, 2 Mar 2001 16:46:42 +0000 (16:46 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 2 Mar 2001 16:46:42 +0000 (16:46 +0000)
implied.

Doc/lib/libshutil.tex

index ad96bd38bdeee3545eab976c39a8074e249880c8..8ff5367b2ad660c24f029678a1ae79a92551ef5e 100644 (file)
@@ -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}}