Return the file descriptor of the underlying socket.
(self)
| 778 | return super().seekable() |
| 779 | |
| 780 | def fileno(self): |
| 781 | """Return the file descriptor of the underlying socket. |
| 782 | """ |
| 783 | self._checkClosed() |
| 784 | return self._sock.fileno() |
| 785 | |
| 786 | @property |
| 787 | def name(self): |
no test coverage detected