Return the file descriptor for the underlying file.
(self)
| 259 | return self._pos |
| 260 | |
| 261 | def fileno(self): |
| 262 | """Return the file descriptor for the underlying file.""" |
| 263 | self._check_not_closed() |
| 264 | return self._fp.fileno() |
| 265 | |
| 266 | @property |
| 267 | def name(self): |