File descriptor or handle of the connection
(self)
| 167 | return self._writable |
| 168 | |
| 169 | def fileno(self): |
| 170 | """File descriptor or handle of the connection""" |
| 171 | self._check_closed() |
| 172 | return self._handle |
| 173 | |
| 174 | def close(self): |
| 175 | """Close the connection""" |
no test coverage detected