(*args)
| 34 | exc_handler_called = False |
| 35 | |
| 36 | def exc_handler(*args): |
| 37 | self.assertEqual(name.get(), 'bar') |
| 38 | nonlocal exc_handler_called |
| 39 | exc_handler_called = True |
| 40 | |
| 41 | async def task(): |
| 42 | name.set('bar') |
nothing calls this directly
no test coverage detected