(exc_type, exc, tb)
| 479 | @staticmethod |
| 480 | def _create_cb_wrapper(callback, /, *args, **kwds): |
| 481 | def _exit_wrapper(exc_type, exc, tb): |
| 482 | callback(*args, **kwds) |
| 483 | return _exit_wrapper |
| 484 | |
| 485 | def __init__(self): |
nothing calls this directly
no test coverage detected