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