(self)
| 2354 | _testinternalcapi.interpreter_exists(interpid)) |
| 2355 | |
| 2356 | def test_lookup_destroyed(self): |
| 2357 | interpid = _interpreters.create() |
| 2358 | _interpreters.destroy(interpid) |
| 2359 | self.assertFalse( |
| 2360 | _testinternalcapi.interpreter_exists(interpid)) |
| 2361 | |
| 2362 | def get_refcount_helpers(self): |
| 2363 | return ( |
nothing calls this directly
no test coverage detected