[Python-checkins] python/dist/src/Doc/lib libshutil.tex,1.12,1.13

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Sun, 23 Feb 2003 13:36:50 -0800


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

Modified Files:
	libshutil.tex 
Log Message:
Fix SF bug #691276, shutil.copytree documentation bug


Index: libshutil.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libshutil.tex,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** libshutil.tex	24 Jan 2003 17:33:30 -0000	1.12
--- libshutil.tex	23 Feb 2003 21:36:47 -0000	1.13
***************
*** 70,77 ****
    the source tree are represented as symbolic links in the new tree;
    if false or omitted, the contents of the linked files are copied to
!   the new tree.  Errors are reported to standard output.
  
    The source code for this should be considered an example rather than 
    a tool.
  \end{funcdesc}
  
--- 70,80 ----
    the source tree are represented as symbolic links in the new tree;
    if false or omitted, the contents of the linked files are copied to
!   the new tree.  If exception(s) occur, an Error is raised
!   with a list of reasons.
  
    The source code for this should be considered an example rather than 
    a tool.
+ \versionchanged[Error is raised if any exceptions occur during copying,
+ rather than printing a message]{2.3}
  \end{funcdesc}