bpo-20891: Calling PyGILState_Ensure in a non-Python thread must not crash.
(self)
| 354 | self.assertEqual(err, '') |
| 355 | |
| 356 | def test_bpo20891(self): |
| 357 | """ |
| 358 | bpo-20891: Calling PyGILState_Ensure in a non-Python thread must not |
| 359 | crash. |
| 360 | """ |
| 361 | out, err = self.run_embedded_interpreter("test_bpo20891") |
| 362 | self.assertEqual(out, '') |
| 363 | self.assertEqual(err, '') |
| 364 | |
| 365 | def test_initialize_twice(self): |
| 366 | """ |
nothing calls this directly
no test coverage detected