(self, data: bytes)
| 358 | raise OSError(e.args[0], str(e)) from e |
| 359 | |
| 360 | def sendall(self, data: bytes) -> None: |
| 361 | total_sent = 0 |
| 362 | while total_sent < len(data): |
| 363 | sent = self._send_until_done( |
| 364 | data[total_sent : total_sent + SSL_WRITE_BLOCKSIZE] |
| 365 | ) |
| 366 | total_sent += sent |
| 367 | |
| 368 | def shutdown(self, how: int) -> None: |
| 369 | try: |
nothing calls this directly
no test coverage detected