Lines Matching full:async
4 Subject: [PATCH] Bump async-timeout version for aiohttp 3.8 (#5299)
40 + async with ceil_timeout(real_timeout.connect):
53 + async with async_timeout.timeout(self._timeout):
64 + async with async_timeout.timeout(timeout or self._receive_timeout):
93 + async with ceil_timeout(timeout.sock_connect):
102 + async with ceil_timeout(timeout.sock_connect):
111 + async with ceil_timeout(timeout.sock_connect):
169 + async with ceil_timeout(timeout):
178 + async with ceil_timeout(end_t - now):
191 + async with async_timeout.timeout(self._timeout):
202 + async with async_timeout.timeout(timeout or self._receive_timeout):
223 @@ -461,7 +461,7 @@ async def test_recv_timeout(aiohttp_client) -> None:
228 + async with async_timeout.timeout(0.01):
244 @@ -391,48 +390,22 @@ async def test_weakref_handle_weak(loop) -> None:
263 -async def test_ceil_timeout(loop) -> None:
267 +async def test_ceil_timeout() -> None:
268 + async with helpers.ceil_timeout(None) as timeout:
281 -async def test_ceil_timeout_round(loop) -> None:
284 +async def test_ceil_timeout_round() -> None:
285 + async with helpers.ceil_timeout(7.5) as cm:
294 -async def test_ceil_timeout_small(loop) -> None:
297 +async def test_ceil_timeout_small() -> None:
298 + async with helpers.ceil_timeout(1.1) as cm: