(self, b)
| 533 | return True |
| 534 | |
| 535 | def write(self, b): |
| 536 | # This is needed because python will not always return the correct |
| 537 | # kind of error even though writeable returns False. |
| 538 | raise io.UnsupportedOperation("write") |
| 539 | |
| 540 | def read(self, n=-1): |
| 541 | return self._data.read(n) |
no outgoing calls
no test coverage detected