Skip to content

Commit

Permalink
Stop using loop kwarg in asyncio.wait() call (DeprecationWarning) (
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackenmen committed Mar 31, 2020
1 parent 9bc4a20 commit 2870219
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion uvloop/handles/process.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ cdef class UVProcessTransport(UVProcess):

if handle._init_futs:
handle._stdio_ready = 0
init_fut = aio_gather(*handle._init_futs, loop=loop)
init_fut = aio_gather(*handle._init_futs)
init_fut.add_done_callback(
ft_partial(handle.__stdio_inited, waiter))
else:
Expand Down
7 changes: 3 additions & 4 deletions uvloop/loop.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1682,7 +1682,7 @@ cdef class Loop:
uv.SOCK_STREAM, 0, flags,
0) for host in hosts]

infos = await aio_gather(*fs, loop=self)
infos = await aio_gather(*fs)

completed = False
sock = None
Expand Down Expand Up @@ -1908,7 +1908,7 @@ cdef class Loop:
lai = &lai_static

if len(fs):
await aio_wait(fs, loop=self)
await aio_wait(fs)

if rai is NULL:
ai_remote = f1.result()
Expand Down Expand Up @@ -3095,8 +3095,7 @@ cdef class Loop:

shutdown_coro = aio_gather(
*[ag.aclose() for ag in closing_agens],
return_exceptions=True,
loop=self)
return_exceptions=True)

results = await shutdown_coro
for result, agen in zip(results, closing_agens):
Expand Down

0 comments on commit 2870219

Please sign in to comment.