(self, e: BaseException)
| 1612 | del buf |
| 1613 | |
| 1614 | def _is_connreset(self, e: BaseException) -> bool: |
| 1615 | if isinstance(e, ssl.SSLError) and e.args[0] == ssl.SSL_ERROR_EOF: |
| 1616 | return True |
| 1617 | return super()._is_connreset(e) |
| 1618 | |
| 1619 | |
| 1620 | class PipeIOStream(BaseIOStream): |
no outgoing calls
no test coverage detected