Return whether the file supports seeking.
(self)
| 137 | return self._fp.fileno() |
| 138 | |
| 139 | def seekable(self): |
| 140 | """Return whether the file supports seeking.""" |
| 141 | return self.readable() and self._buffer.seekable() |
| 142 | |
| 143 | def readable(self): |
| 144 | """Return whether the file was opened for reading.""" |