(self)
| 718 | self._loop.call_soon_threadsafe(self._queue.put_nowait, value) |
| 719 | |
| 720 | async def get(self) -> _Type: |
| 721 | value = await self._queue.get() |
| 722 | self._pending.remove(value) |
| 723 | return value |
| 724 | |
| 725 | |
| 726 | def _get_children_info(children: list[VdomChild]) -> Sequence[_ChildInfo]: |
no outgoing calls
no test coverage detected