summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-11-08 00:36:33 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-11-08 00:36:33 (GMT)
commite31998363711a8dcc92f9dc541a2981c95a22f69 (patch)
treea6b89b8c3868b058b2acf831298f599057d24fed
parent0f44dad5ed9ac5396c850a90d2309d3f54e6dcac (diff)
downloadcpython-e31998363711a8dcc92f9dc541a2981c95a22f69.zip
cpython-e31998363711a8dcc92f9dc541a2981c95a22f69.tar.gz
cpython-e31998363711a8dcc92f9dc541a2981c95a22f69.tar.bz2
Merged revisions 76148 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76148 | antoine.pitrou | 2009-11-08 01:24:12 +0100 (dim., 08 nov. 2009) | 4 lines Kill a small potential leak in test_threading. The leak may not manifest itself if the OS re-uses the same thread ids (I suppose Neal's machine doesn't :-)) ........
-rw-r--r--Lib/test/test_threading.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py
index e9ff4ca..04e37a7 100644
--- a/Lib/test/test_threading.py
+++ b/Lib/test/test_threading.py
@@ -100,6 +100,8 @@ class ThreadTests(unittest.TestCase):
thread.start_new_thread(f, ())
done.wait()
self.assertFalse(ident[0] is None)
+ # Kill the "immortal" _DummyThread
+ del threading._active[ident[0]]
# run with a small(ish) thread stack size (256kB)
def test_various_ops_small_stack(self):