comparison tests/test_parse_files/test_async_function_def.py @ 69:a73eaf42bea1

Add ast.AsyncDefFunction.
author Bastien Orivel <eijebong@bananium.fr>
date Mon, 13 Jun 2016 17:54:19 +0200
parents
children
comparison
equal deleted inserted replaced
68:c59ad5ccd8a6 69:a73eaf42bea1
1 async def func0():
2 pass
3 async def func1(a, b: str) -> None:
4 pass
5 async def func2(a, *, b: composite.type, c=2, d: int=3):
6 pass
7 async def func3(a, c=1, *args, b=2, **kwargs):
8 pass