diff options
Diffstat (limited to 'Lib/test/test_capi.py')
-rw-r--r-- | Lib/test/test_capi.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py index 848a528..b36a2ce 100644 --- a/Lib/test/test_capi.py +++ b/Lib/test/test_capi.py @@ -494,19 +494,6 @@ class EmbeddingTests(unittest.TestCase): self.assertEqual(out, '') self.assertEqual(err, '') - @unittest.skipIf(True, - "FIXME: test fails randomly because of a race conditon, " - "see bpo-20891") - def test_bpo20891(self): - """ - bpo-20891: Calling PyGILState_Ensure in a non-Python thread before - calling PyEval_InitThreads() must not crash. PyGILState_Ensure() must - call PyEval_InitThreads() for us in this case. - """ - out, err = self.run_embedded_interpreter("bpo20891") - self.assertEqual(out, '') - self.assertEqual(err, '') - class SkipitemTest(unittest.TestCase): |