Return the file descriptor of the underlying socket.
(self)
| 750 | return super().seekable() |
| 751 | |
| 752 | def fileno(self): |
| 753 | """Return the file descriptor of the underlying socket. |
| 754 | """ |
| 755 | self._checkClosed() |
| 756 | return self._sock.fileno() |
| 757 | |
| 758 | @property |
| 759 | def name(self): |
no test coverage detected