(q)
| 198 | run = [False] |
| 199 | |
| 200 | def thread_go(q): |
| 201 | def go(): |
| 202 | q.get(timeout=0.1) |
| 203 | |
| 204 | with expect_raises(queue.Empty): |
| 205 | asyncio.run(greenlet_spawn(go)) |
| 206 | run[0] = True |
| 207 | |
| 208 | t = threading.Thread( |
| 209 | target=thread_go, args=[queue.AsyncAdaptedQueue()] |
nothing calls this directly
no test coverage detected