Files
openide/python/testData/refactoring/extractmethod/AwaitExpression.after.py
2015-09-12 15:54:47 +03:00

8 lines
103 B
Python

async def foo(x):
y = await bar(x)
return y
async def bar(x_new):
return await x_new + 1