Returns the file descriptor for this stream.
(self)
| 283 | self._closed = False |
| 284 | |
| 285 | def fileno(self) -> Union[int, ioloop._Selectable]: |
| 286 | """Returns the file descriptor for this stream.""" |
| 287 | raise NotImplementedError() |
| 288 | |
| 289 | def close_fd(self) -> None: |
| 290 | """Closes the file underlying this stream. |
no outgoing calls
no test coverage detected