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

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


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

Modified Files:
      Tag: release22-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.8
retrieving revision 1.8.14.1
diff -C2 -d -r1.8 -r1.8.14.1
*** libshutil.tex	4 Sep 2001 18:26:27 -0000	1.8
--- libshutil.tex	18 Jun 2002 14:31:19 -0000	1.8.14.1
***************
*** 79,84 ****
  \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
--- 79,85 ----
  \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