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