[Python-checkins] CVS: python/dist/src/Doc/lib libshutil.tex,1.6,1.7

Fred L. Drake fdrake@users.sourceforge.net
Fri, 02 Mar 2001 08:46:45 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv31181/lib

Modified Files:
	libshutil.tex 
Log Message:

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


Index: libshutil.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libshutil.tex,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** libshutil.tex	2000/07/31 15:45:46	1.6
--- libshutil.tex	2001/03/02 16:46:42	1.7
***************
*** 20,25 ****
  
  \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.
  \end{funcdesc}
  
--- 20,26 ----
  
  \begin{funcdesc}{copyfile}{src, dst}
!   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}