[Python-checkins] CVS: python/dist/src/Misc NEWS,1.234,1.235
Steve Purcell
purcell@users.sourceforge.net
2001年9月06日 09:05:20 -0700
Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv4202
Modified Files:
NEWS
Log Message:
Added note of unittest.py changes that fixed bug 451309
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.234
retrieving revision 1.235
diff -C2 -d -r1.234 -r1.235
*** NEWS 2001年09月06日 08:54:16 1.234
--- NEWS 2001年09月06日 16:05:17 1.235
***************
*** 109,112 ****
--- 109,116 ----
code objects is no longer allowed. This plugs a security hole.
+ - unittest.TestResult instances no longer store references to tracebacks
+ generated by test failures. This prevents unexpected dangling references
+ to objects that should be garbage collected between tests.
+
Tools