For copyfile(), be explicit that src and dst are file names; that was only

implied.
This commit is contained in:
Fred Drake 2001-03-02 16:46:42 +00:00
parent 043732e95d
commit 043d5e5514

View file

@ -19,8 +19,9 @@ file type and creator codes will not be correct.
\begin{funcdesc}{copyfile}{src, dst} \begin{funcdesc}{copyfile}{src, dst}
Copy the contents of \var{src} to \var{dst}. If \var{dst} exists, Copy the contents of the file named \var{src} to a file named
it will be replaced, otherwise it will be created. \var{dst}. If \var{dst} exists, it will be replaced, otherwise it
will be created.
\end{funcdesc} \end{funcdesc}
\begin{funcdesc}{copyfileobj}{fsrc, fdst\optional{, length}} \begin{funcdesc}{copyfileobj}{fsrc, fdst\optional{, length}}