(self)
| 33 | return self.sock.fileno() |
| 34 | |
| 35 | def close(self): |
| 36 | self.sock.close() |
| 37 | # Remove myself from the event loop's handler list |
| 38 | self.handler_list.remove(self) |
| 39 | |
| 40 | def wants_to_send(self): |
| 41 | return True if self.outgoing else False |
no outgoing calls
no test coverage detected