Return the file descriptor of the underlying socket.
(self)
| 769 | return super().seekable() |
| 770 | |
| 771 | def fileno(self): |
| 772 | """Return the file descriptor of the underlying socket. |
| 773 | """ |
| 774 | self._checkClosed() |
| 775 | return self._sock.fileno() |
| 776 | |
| 777 | @property |
| 778 | def name(self): |
no test coverage detected