diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2018-01-29 14:04:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-29 14:04:44 +0100 |
commit | d951157268b2122109098c792562b71ccc41920b (patch) | |
tree | 8d28a25c5549da0d385488eedec6c9962eb24b4b /Lib/test | |
parent | 8017b804a06804793bcc0a7f734d8a846b0fe18a (diff) | |
download | cpython-git-d951157268b2122109098c792562b71ccc41920b.tar.gz |
bpo-20891: Reenable test_embed.test_bpo20891() (GH-5420)
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_embed.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_embed.py b/Lib/test/test_embed.py index c9b65485ac..c7f45b59ac 100644 --- a/Lib/test/test_embed.py +++ b/Lib/test/test_embed.py @@ -198,9 +198,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 |