From: Antoine Pitrou Date: Sun, 8 Nov 2009 00:36:36 +0000 (+0000) Subject: Merged revisions 76149 via svnmerge from X-Git-Tag: v3.1.2rc1~361 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=debfafd4e208c98af035371069b4835c1f91f784;p=python Merged revisions 76149 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r76149 | antoine.pitrou | 2009-11-08 01:30:04 +0100 (dim., 08 nov. 2009) | 11 lines 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 :-)) ........ ................ --- diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py index f6f6b260d0..7b6d82bb11 100644 --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -101,6 +101,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):