(self, msg=None)
| 1670 | raise UnsupportedOperation('File not open for reading') |
| 1671 | |
| 1672 | def _checkWritable(self, msg=None): |
| 1673 | if not self._writable: |
| 1674 | raise UnsupportedOperation('File not open for writing') |
| 1675 | |
| 1676 | def read(self, size=None): |
| 1677 | """Read at most size bytes, returned as bytes. |
no test coverage detected