(self)
| 907 | 1/0 |
| 908 | |
| 909 | def test_exit_suppress(self): |
| 910 | with self.exit_stack() as stack: |
| 911 | stack.push(lambda *exc: True) |
| 912 | 1/0 |
| 913 | |
| 914 | def test_exit_exception_traceback(self): |
| 915 | # This test captures the current behavior of ExitStack so that we know |