Return whether the file supports seeking.
(self)
| 174 | return self._fp.fileno() |
| 175 | |
| 176 | def seekable(self): |
| 177 | """Return whether the file supports seeking.""" |
| 178 | return self.readable() and self._buffer.seekable() |
| 179 | |
| 180 | def readable(self): |
| 181 | """Return whether the file was opened for reading.""" |