Files
TencentOS-tiny/components/language/micropython/tests/basics/async_def.py
2022-09-29 12:10:37 +08:00

17 lines
229 B
Python

# test async def
def dec(f):
print('decorator')
return f
# test definition with a decorator
@dec
async def foo():
print('foo')
coro = foo()
try:
coro.send(None)
except StopIteration:
print('StopIteration')