Lines Matching refs:helpers
13 aiohttp/helpers.py | 25 ++++++---------
25 @@ -74,8 +74,8 @@ from .helpers import (
76 -from .helpers import PY_36, CeilTimeout, get_running_loop, is_ip_address, noop, sentinel
77 +from .helpers import (
115 diff --git a/aiohttp/helpers.py b/aiohttp/helpers.py
117 --- a/aiohttp/helpers.py
118 +++ b/aiohttp/helpers.py
159 -from .helpers import CeilTimeout, current_task
160 +from .helpers import ceil_timeout, current_task
252 - helpers.call_later(cb, 10.1, loop)
259 - helpers.call_later(cb, 0, loop)
264 - with helpers.CeilTimeout(None, loop=loop) as timeout:
268 + async with helpers.ceil_timeout(None) as timeout:
274 - with helpers.CeilTimeout(10, loop=loop):
282 - with helpers.CeilTimeout(7.5, loop=loop) as cm:
285 + async with helpers.ceil_timeout(7.5) as cm:
295 - with helpers.CeilTimeout(1.1, loop=loop) as cm:
298 + async with helpers.ceil_timeout(1.1) as cm: