(self)
| 983 | recorders = self.exception_recorders) |
| 984 | |
| 985 | def test_try_finally(self): |
| 986 | |
| 987 | def func(): |
| 988 | try: |
| 989 | try: |
| 990 | 1/0 |
| 991 | finally: |
| 992 | pass |
| 993 | except: |
| 994 | pass |
| 995 | |
| 996 | self.check_balanced( |
| 997 | func, |
| 998 | recorders = self.exception_recorders) |
| 999 | |
| 1000 | def test_async_for(self): |
| 1001 |
nothing calls this directly
no test coverage detected