(self)
| 46 | return False |
| 47 | |
| 48 | def __del__(self): |
| 49 | # Automatically close the evil event loop to avoid warnings. |
| 50 | if not self.is_closed() and not self.is_running(): |
| 51 | self.close() |
| 52 | |
| 53 | |
| 54 | class DuckFuture: |
nothing calls this directly
no test coverage detected