(self)
| 141 | raise OSError("connection is write-only") |
| 142 | |
| 143 | def _check_writable(self): |
| 144 | if not self._writable: |
| 145 | raise OSError("connection is read-only") |
| 146 | |
| 147 | def _bad_message_length(self): |
| 148 | if self._writable: |
no outgoing calls
no test coverage detected