(sock: Union[socket.socket, _sslConn], buf: bytes)
| 236 | |
| 237 | |
| 238 | def sendall(sock: Union[socket.socket, _sslConn], buf: bytes) -> None: |
| 239 | sock.sendall(buf) |
| 240 | |
| 241 | |
| 242 | async def _poll_cancellation(conn: AsyncConnection) -> None: |
no test coverage detected