(self)
| 1818 | self.check_branches(whilefunc) |
| 1819 | |
| 1820 | def test_except_star(self): |
| 1821 | |
| 1822 | class Foo: |
| 1823 | def meth(self): |
| 1824 | pass |
| 1825 | |
| 1826 | def func(): |
| 1827 | try: |
| 1828 | try: |
| 1829 | raise KeyError |
| 1830 | except* Exception as e: |
| 1831 | f = Foo(); f.meth() |
| 1832 | except KeyError: |
| 1833 | pass |
| 1834 | |
| 1835 | |
| 1836 | self.check_branches(func) |
| 1837 | |
| 1838 | def test4(self): |
| 1839 |
nothing calls this directly
no test coverage detected