(self, msg=None)
| 1648 | raise UnsupportedOperation('File not open for reading') |
| 1649 | |
| 1650 | def _checkWritable(self, msg=None): |
| 1651 | if not self._writable: |
| 1652 | raise UnsupportedOperation('File not open for writing') |
| 1653 | |
| 1654 | def read(self, size=None): |
| 1655 | """Read at most size bytes, returned as bytes. |
no test coverage detected