(exc_type, exc, tb)
| 641 | @staticmethod |
| 642 | def _create_async_cb_wrapper(callback, /, *args, **kwds): |
| 643 | async def _exit_wrapper(exc_type, exc, tb): |
| 644 | await callback(*args, **kwds) |
| 645 | return _exit_wrapper |
| 646 | |
| 647 | async def enter_async_context(self, cm): |
nothing calls this directly
no test coverage detected