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)
| 417 | ### Inquiries ### |
| 418 | |
| 419 | def seekable(self): |
| 420 | """Return a bool indicating whether object supports random access. |
| 421 | |
| 422 | If False, seek(), tell() and truncate() will raise OSError. |
| 423 | This method may need to do a test seek(). |
| 424 | """ |
| 425 | return False |
| 426 | |
| 427 | def _checkSeekable(self, msg=None): |
| 428 | """Internal: raise UnsupportedOperation if file is not seekable |
no outgoing calls
no test coverage detected