(self, *args)
| 87 | return self |
| 88 | |
| 89 | def __exit__(self, *args): |
| 90 | for cls in _get_managed_classes(self): |
| 91 | _context_registry().get(cls).exit(self) |
| 92 | |
| 93 | def __call__(self, func): |
| 94 | @functools.wraps(func) |
nothing calls this directly
no test coverage detected