Return a bool indicating whether object supports random access. If False, seek(), tell() and truncate() will raise OSError. This method may need to do a test seek().
(self)
| 448 | ### Inquiries ### |
| 449 | |
| 450 | def seekable(self): |
| 451 | """Return a bool indicating whether object supports random access. |
| 452 | |
| 453 | If False, seek(), tell() and truncate() will raise OSError. |
| 454 | This method may need to do a test seek(). |
| 455 | """ |
| 456 | return False |
| 457 | |
| 458 | def _checkSeekable(self, msg=None): |
| 459 | """Internal: raise UnsupportedOperation if file is not seekable |
no outgoing calls
no test coverage detected