Lines Matching refs:async
30 async def __aenter__(self):
33 async def __aexit__(self, *exc_info):
36 async def asynciter(iterable):
729 async def test_jump_out_of_async_for_block_forwards(output):
731 async for i in asynciter([1, 2]):
737 async def test_jump_out_of_async_for_block_backwards(output):
740 async for i in asynciter([1]):
810 async def test_jump_forwards_out_of_async_with_block(output):
811 async with asynctracecontext(output, 1):
822 async def test_jump_backwards_out_of_async_with_block(output):
824 async with asynctracecontext(output, 2):
891 async def test_jump_across_async_with(output):
893 async with asynctracecontext(output, 2):
895 async with asynctracecontext(output, 4):
908 async def test_jump_out_of_async_with_block_within_for_block(output):
911 async with asynctracecontext(output, 3):
926 async def test_jump_out_of_async_with_block_within_with_block(output):
929 async with asynctracecontext(output, 3):
945 async def test_jump_out_of_async_with_block_within_finally_block(output):
949 async with asynctracecontext(output, 4):
978 async def test_jump_out_of_async_with_assignment(output):
980 async with asynctracecontext(output, 2) \
1025 async def test_jump_over_async_for_block_before_else(output):
1028 async for i in asynciter([3]):
1087 async def test_no_jump_forwards_into_async_for_block(output):
1089 async for i in asynciter([1, 2]):
1099 async def test_no_jump_backwards_into_async_for_block(output):
1100 async for i in asynciter([1, 2]):
1127 async def test_no_jump_forwards_into_async_with_block(output):
1129 async with asynctracecontext(output, 2):
1139 async def test_no_jump_backwards_into_async_with_block(output):
1140 async with asynctracecontext(output, 1):
1225 async def test_no_jump_between_async_with_blocks(output):
1227 async with asynctracecontext(output, 2):
1229 async with asynctracecontext(output, 4):
1244 async def test_no_jump_into_async_for_block_before_else(output):
1247 async for i in asynciter([3]):