(self)
| 838 | 1/0 |
| 839 | |
| 840 | def test_exit_suppress(self): |
| 841 | with self.exit_stack() as stack: |
| 842 | stack.push(lambda *exc: True) |
| 843 | 1/0 |
| 844 | |
| 845 | def test_exit_exception_traceback(self): |
| 846 | # This test captures the current behavior of ExitStack so that we know |