(self, exc_type, exc_value, traceback)
| 38 | return self |
| 39 | |
| 40 | def __exit__(self, exc_type, exc_value, traceback): |
| 41 | if self.owns_loop and not self.master.event_loop.is_closed(): |
| 42 | # Close the loop if we created it |
| 43 | self.master.event_loop.close() |
| 44 | return False |
| 45 | |
| 46 | async def cycle(self, addon, f): |
| 47 | """ |