]> granicus.if.org Git - python/commitdiff
Merged revisions 78536 via svnmerge from
authorGregory P. Smith <greg@mad-scientist.com>
Mon, 1 Mar 2010 03:13:36 +0000 (03:13 +0000)
committerGregory P. Smith <greg@mad-scientist.com>
Mon, 1 Mar 2010 03:13:36 +0000 (03:13 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78536 | gregory.p.smith | 2010-02-28 19:09:19 -0800 (Sun, 28 Feb 2010) | 2 lines

  Cleanup the test added in r78517 based on Ezio Melotti's feedback.
........

Lib/test/test_threading.py

index 9e540c2275ca8ddf137d537b604c761f59ecbac4..ef718ec333d75115638e09882733409b5551ea7e 100644 (file)
@@ -255,14 +255,10 @@ class ThreadTests(BaseTestCase):
         threading._start_new_thread = fail_new_thread
         try:
             t = threading.Thread(target=lambda: None)
-            try:
-                t.start()
-                assert False
-            except threading.ThreadError:
-                self.assertFalse(
-                    t in threading._limbo,
-                    "Failed to cleanup _limbo map on failure of Thread.start()."
-                )
+            self.assertRaises(threading.ThreadError, t.start)
+            self.assertFalse(
+                t in threading._limbo,
+                "Failed to cleanup _limbo map on failure of Thread.start().")
         finally:
             threading._start_new_thread = _start_new_thread