(callback, /, *args, **kwds)
| 478 | |
| 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): |
| 486 | self._exit_callbacks = deque() |