summaryrefslogtreecommitdiff
path: root/Lib/test/test_threading.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-11-08 00:24:12 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2009-11-08 00:24:12 +0000
commit002533013f542160c294791671f3707db4491f22 (patch)
treea49a05703d60f0761e27faa7f911b4ddc812efc0 /Lib/test/test_threading.py
parent1a22e87a3067a750411e19ad0255991242f77359 (diff)
downloadcpython-git-002533013f542160c294791671f3707db4491f22.tar.gz
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 :-))
Diffstat (limited to 'Lib/test/test_threading.py')
-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 c38eda7aeb..4e0a572c85 100644
--- a/Lib/test/test_threading.py
+++ b/Lib/test/test_threading.py
@@ -111,6 +111,8 @@ class ThreadTests(BaseTestCase):
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):