(exc_type, exc, tb)
| 648 | @staticmethod |
| 649 | def _create_async_cb_wrapper(callback, /, *args, **kwds): |
| 650 | async def _exit_wrapper(exc_type, exc, tb): |
| 651 | await callback(*args, **kwds) |
| 652 | return _exit_wrapper |
| 653 | |
| 654 | async def enter_async_context(self, cm): |
nothing calls this directly
no test coverage detected