(self, *args)
| 248 | raise self.UnsupportedOperation("not seekable") |
| 249 | |
| 250 | def truncate(self, *args): |
| 251 | raise self.UnsupportedOperation("not seekable") |
| 252 | |
| 253 | class CMockUnseekableIO(MockUnseekableIO, io.BytesIO): |
| 254 | UnsupportedOperation = io.UnsupportedOperation |
no outgoing calls
no test coverage detected