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