From: Fred Drake Date: Fri, 2 Mar 2001 16:46:42 +0000 (+0000) Subject: For copyfile(), be explicit that src and dst are file names; that was only X-Git-Tag: v2.1b1~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=043d5e55142bee99a7e94031c94c1ca3afc3ad38;p=python For copyfile(), be explicit that src and dst are file names; that was only implied. --- diff --git a/Doc/lib/libshutil.tex b/Doc/lib/libshutil.tex index ad96bd38bd..8ff5367b2a 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}}