(self, loop, context)
| 177 | self.loop.set_exception_handler(old_handler) |
| 178 | |
| 179 | def loop_exception_handler(self, loop, context): |
| 180 | self.__unhandled_exceptions.append(context) |
| 181 | loop.default_exception_handler(context) |
| 182 | |
| 183 | def _format_loop_exception(self, context, n): |
| 184 | message = context.get('message', 'Unhandled exception in event loop') |
nothing calls this directly
no outgoing calls
no test coverage detected