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

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Tue, 18 Jun 2002 07:32:18 -0700


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

Modified Files:
      Tag: release21-maint
	libshutil.tex 
Log Message:
Clarified description of error handling for shutil.rmtree().
This closes SF patch #569832.


Index: libshutil.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libshutil.tex,v
retrieving revision 1.7
retrieving revision 1.7.4.1
diff -C2 -d -r1.7 -r1.7.4.1
*** libshutil.tex	2 Mar 2001 16:46:42 -0000	1.7
--- libshutil.tex	18 Jun 2002 14:32:16 -0000	1.7.4.1
***************
*** 74,79 ****
  \index{directory!deleting}
    Delete an entire directory tree.  If \var{ignore_errors} is true,
!   errors will be ignored; if false or omitted, errors are handled by
!   calling a handler specified by \var{onerror} or raise an exception.
  
    If \var{onerror} is provided, it must be a callable that accepts
--- 74,80 ----
  \index{directory!deleting}
    Delete an entire directory tree.  If \var{ignore_errors} is true,
!   errors resulting from failed removals will be ignored; if false or
!   omitted, such errors are handled by calling a handler specified by
!   \var{onerror} or, if that is omitted, they raise an exception.
  
    If \var{onerror} is provided, it must be a callable that accepts