Enter a context manager that should be exited during tearDown.
(self, context_manager)
| 233 | |
| 234 | @final |
| 235 | def enter_instance_context(self, context_manager): |
| 236 | """ |
| 237 | Enter a context manager that should be exited during tearDown. |
| 238 | """ |
| 239 | return self._instance_teardown_stack.enter_context(context_manager) |
| 240 | |
| 241 | @final |
| 242 | def add_instance_callback(self, callback): |
no outgoing calls