mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
For copyfile(), be explicit that src and dst are file names; that was only
implied.
This commit is contained in:
parent
043732e95d
commit
043d5e5514
1 changed files with 3 additions and 2 deletions
|
@ -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}}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue