pycdc icon indicating copy to clipboard operation
pycdc copied to clipboard

Add Python 3.5's async for (opcode GET_AITER)

Open rocky opened this issue 7 years ago • 0 comments

Here is a sample program that produces GET_AITER:

async def a(b, c):
    async for b in c:
        pass

rocky avatar Apr 20 '17 18:04 rocky