Put item without notify the event.
(self, item)
| 471 | raise AsyncQueue.EventLoopShutdownError() |
| 472 | |
| 473 | def put_nowait(self, item) -> None: |
| 474 | """ Put item without notify the event. """ |
| 475 | self._aq.put_nowait(item) |
| 476 | |
| 477 | # Notify many queues in one coroutine, to cut down context switch overhead. |
| 478 | @staticmethod |
nothing calls this directly
no test coverage detected