(self)
| 952 | recorders = self.exception_recorders) |
| 953 | |
| 954 | def test_implicit_reraise(self): |
| 955 | |
| 956 | def func(): |
| 957 | try: |
| 958 | try: |
| 959 | 1/0 |
| 960 | except ValueError: |
| 961 | pass |
| 962 | except: |
| 963 | pass |
| 964 | |
| 965 | self.check_balanced( |
| 966 | func, |
| 967 | recorders = self.exception_recorders) |
| 968 | |
| 969 | |
| 970 | def test_implicit_reraise_named(self): |
nothing calls this directly
no test coverage detected