(self)
| 197 | self.comm.on_close(_on_close) |
| 198 | |
| 199 | def is_open(self): |
| 200 | return not (self._ext_close or self.comm._closed) |
| 201 | |
| 202 | def on_close(self): |
| 203 | # When the socket is closed, deregister the websocket with |
no outgoing calls
no test coverage detected