[Python-checkins] CVS: python/dist/src/Doc/lib libsys.tex,1.54,1.55

Tim Peters tim_one@users.sourceforge.net
Mon, 22 Oct 2001 18:59:56 -0700


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

Modified Files:
	libsys.tex 
Log Message:
Doc and NEWS changes due to Jeremy adding traceback objects to gc.


Index: libsys.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsys.tex,v
retrieving revision 1.54
retrieving revision 1.55
diff -C2 -d -r1.54 -r1.55
*** libsys.tex	2001/10/20 04:24:09	1.54
--- libsys.tex	2001/10/23 01:59:54	1.55
***************
*** 110,114 ****
    to delete it after use (best done with a \keyword{try}
    ... \keyword{finally} statement) or to call \function{exc_info()} in
!   a function that does not itself handle an exception.}
  \end{funcdesc}
  
--- 110,117 ----
    to delete it after use (best done with a \keyword{try}
    ... \keyword{finally} statement) or to call \function{exc_info()} in
!   a function that does not itself handle an exception.} \note{Beginning
!   with Python 2.2, such cycles are automatically reclaimed when garbage
!   collection is enabled and they become unreachable, but it remains more
!   efficient to avoid creating cycles.}
  \end{funcdesc}