(exc_type, exc, tb)
| 489 | @staticmethod |
| 490 | def _create_cb_wrapper(callback, /, *args, **kwds): |
| 491 | def _exit_wrapper(exc_type, exc, tb): |
| 492 | callback(*args, **kwds) |
| 493 | return _exit_wrapper |
| 494 | |
| 495 | def __init__(self): |
nothing calls this directly
no test coverage detected