(self, item: T_contra, /)
| 39 | """Protocol for writing items to a stream.""" |
| 40 | |
| 41 | async def send(self, item: T_contra, /) -> None: ... |
| 42 | async def aclose(self) -> None: ... |
| 43 | async def __aenter__(self) -> Self: ... |
| 44 | async def __aexit__( |
no outgoing calls
no test coverage detected