(self)
| 131 | self._buffer = None |
| 132 | |
| 133 | def __del__(self): |
| 134 | try: |
| 135 | self.on_disconnect() |
| 136 | except Exception: |
| 137 | pass |
| 138 | |
| 139 | def on_connect(self, connection): |
| 140 | "Called when the socket connects" |
nothing calls this directly
no test coverage detected