[Python-checkins] CVS: python/dist/src/Misc NEWS,1.296,1.297
Tim Peters
tim_one@users.sourceforge.net
2001年10月22日 18:59:56 -0700
Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv21293/python/Misc
Modified Files:
NEWS
Log Message:
Doc and NEWS changes due to Jeremy adding traceback objects to gc.
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.296
retrieving revision 1.297
diff -C2 -d -r1.296 -r1.297
*** NEWS 2001年10月22日 18:41:51 1.296
--- NEWS 2001年10月23日 01:59:54 1.297
***************
*** 17,20 ****
--- 17,24 ----
Library
+ - Traceback objects are now scanned by cyclic garbage collection, so
+ cycles created by casual use of sys.exc_info() no longer cause
+ permanent memory leaks (provided garbage collection is enabled).
+
Tools/Demos