[Python-checkins] r45513 - python/trunk/Misc/build.sh

tim.peters python-checkins at python.org
Tue Apr 18 05:02:12 CEST 2006


Author: tim.peters
Date: Tue Apr 18 05:02:10 2006
New Revision: 45513

Modified:
   python/trunk/Misc/build.sh
Log:
At least test_threading_local doesn't leak any more.


Modified: python/trunk/Misc/build.sh
==============================================================================
--- python/trunk/Misc/build.sh	(original)
+++ python/trunk/Misc/build.sh	Tue Apr 18 05:02:10 2006
@@ -60,7 +60,7 @@
 # Note: test_XXX (none currently) really leak, but are disabled
 # so we don't send spam.  Any test which really leaks should only 
 # be listed here if there are also test cases under Lib/test/leakers.
-LEAKY_TESTS="test_(ctypes|filecmp|socket|threadedtempfile|threading|threading_local|urllib2)"
+LEAKY_TESTS="test_(ctypes|filecmp|socket|threadedtempfile|threading|urllib2)"
 
 # Skip these tests altogether when looking for leaks.  These tests
 # do not need to be stored above in LEAKY_TESTS too.


More information about the Python-checkins mailing list