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

Fred L. Drake fdrake@users.sourceforge.net
Tue, 04 Sep 2001 11:26:29 -0700


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

Modified Files:
	libshutil.tex 
Log Message:
Add more detail to the descriptions of the shutil functions.
This closes SF bug #458223.


Index: libshutil.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libshutil.tex,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** libshutil.tex	2001/03/02 16:46:42	1.7
--- libshutil.tex	2001/09/04 18:26:27	1.8
***************
*** 22,26 ****
    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}
  
--- 22,28 ----
    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.  Special files such as character or block devices
!   and pipes cannot not be copied with this function.  \var{src} and
!   \var{dst} are path names given as strings.
  \end{funcdesc}
  
***************
*** 36,40 ****
  \begin{funcdesc}{copymode}{src, dst}
    Copy the permission bits from \var{src} to \var{dst}.  The file
!   contents, owner, and group are unaffected.
  \end{funcdesc}
  
--- 38,43 ----
  \begin{funcdesc}{copymode}{src, dst}
    Copy the permission bits from \var{src} to \var{dst}.  The file
!   contents, owner, and group are unaffected.  \var{src} and \var{dst}
!   are path names given as strings.
  \end{funcdesc}
  
***************
*** 42,46 ****
    Copy the permission bits, last access time, and last modification
    time from \var{src} to \var{dst}.  The file contents, owner, and
!   group are unaffected.
  \end{funcdesc}
  
--- 45,50 ----
    Copy the permission bits, last access time, and last modification
    time from \var{src} to \var{dst}.  The file contents, owner, and
!   group are unaffected.  \var{src} and \var{dst} are path names given
!   as strings.
  \end{funcdesc}
  
***************
*** 49,53 ****
    \var{dst} is a directory, a file with the same basename as \var{src} 
    is created (or overwritten) in the directory specified.  Permission
!   bits are copied.
  \end{funcdesc}
  
--- 53,58 ----
    \var{dst} is a directory, a file with the same basename as \var{src} 
    is created (or overwritten) in the directory specified.  Permission
!   bits are copied.  \var{src} and \var{dst} are path names given as
!   strings.
  \end{funcdesc}