pycdc
pycdc copied to clipboard
Add Python 3.5's async for (opcode GET_AITER)
Here is a sample program that produces GET_AITER
:
async def a(b, c):
async for b in c:
pass