(self)
| 922 | ] |
| 923 | |
| 924 | def test_explicit_reraise(self): |
| 925 | |
| 926 | def func(): |
| 927 | try: |
| 928 | try: |
| 929 | 1/0 |
| 930 | except: |
| 931 | raise |
| 932 | except: |
| 933 | pass |
| 934 | |
| 935 | self.check_balanced( |
| 936 | func, |
| 937 | recorders = self.exception_recorders) |
| 938 | |
| 939 | def test_explicit_reraise_named(self): |
| 940 |
nothing calls this directly
no test coverage detected