()
| 786 | |
| 787 | @asynccontextmanager |
| 788 | async def my_cm_with_exit_stack(): |
| 789 | async with self.exit_stack() as stack: |
| 790 | await stack.enter_async_context(my_cm()) |
| 791 | yield stack |
| 792 | |
| 793 | for cm in (my_cm, my_cm_with_exit_stack): |
| 794 | with self.subTest(): |
nothing calls this directly
no test coverage detected