()
| 304 | # still has pending operation at deallocation, the process may crash" error |
| 305 | stop = threading.Event() |
| 306 | def threadMain(): |
| 307 | while not stop.is_set(): |
| 308 | self.loop.call_soon_threadsafe(lambda: None) |
| 309 | time.sleep(0.01) |
| 310 | thr = threading.Thread(target=threadMain) |
| 311 | |
| 312 | # In 10 60-second runs of this test prior to the fix: |
nothing calls this directly
no test coverage detected