(self)
| 1836 | self.check_branches(func) |
| 1837 | |
| 1838 | def test4(self): |
| 1839 | |
| 1840 | def foo(n=0): |
| 1841 | while n<4: |
| 1842 | pass |
| 1843 | n += 1 |
| 1844 | return None |
| 1845 | |
| 1846 | self.check_branches(foo) |
| 1847 | |
| 1848 | def test_async_for(self): |
| 1849 |
nothing calls this directly
no test coverage detected