From: <pj...@us...> - 2009-06-04 02:22:31
|
Revision: 6442 http://jython.svn.sourceforge.net/jython/?rev=6442&view=rev Author: pjenvey Date: 2009-06-04 01:34:39 +0000 (Thu, 04 Jun 2009) Log Message: ----------- more gc.collect to hopefully satisfy the solaris buildbots Modified Paths: -------------- trunk/jython/Lib/test/test_scope.py Modified: trunk/jython/Lib/test/test_scope.py =================================================================== --- trunk/jython/Lib/test/test_scope.py 2009-06-03 23:55:10 UTC (rev 6441) +++ trunk/jython/Lib/test/test_scope.py 2009-06-04 01:34:39 UTC (rev 6442) @@ -437,9 +437,9 @@ if is_jython: from test_weakref import extra_collect - extra_collect() # A lot of garbage - extra_collect() + for i in range(3): + extra_collect() vereq(Foo.count, 0) print "17. class and global" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |