(self)
| 1846 | self.check_branches(foo) |
| 1847 | |
| 1848 | def test_async_for(self): |
| 1849 | |
| 1850 | async def gen(): |
| 1851 | yield 2 |
| 1852 | yield 3 |
| 1853 | |
| 1854 | async def foo(): |
| 1855 | async for y in gen(): |
| 1856 | 2 |
| 1857 | pass # line 3 |
| 1858 | |
| 1859 | def func(): |
| 1860 | try: |
| 1861 | foo().send(None) |
| 1862 | except StopIteration: |
| 1863 | pass |
| 1864 | |
| 1865 | self.check_branches(func, foo) |
| 1866 | |
| 1867 | |
| 1868 | class TestLoadSuperAttr(CheckEvents): |
nothing calls this directly
no test coverage detected