Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

asyncio.wait_for DeprecationWarning in Python 3.8 #3

Open
webventurer opened this issue Jul 25, 2020 · 1 comment
Open

asyncio.wait_for DeprecationWarning in Python 3.8 #3

webventurer opened this issue Jul 25, 2020 · 1 comment

Comments

@webventurer
Copy link

asyncutils.py:60: DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10.
  result = await asyncio.wait_for(

In asyncio, the explicit passing of a loop argument has been deprecated and will be removed in version 3.10 for the following: asyncio.sleep(), asyncio.gather(), asyncio.shield(), asyncio.wait_for(), asyncio.wait(), asyncio.as_completed(), asyncio.Task, asyncio.Lock, asyncio.Event, asyncio.Condition, asyncio.Semaphore, asyncio.BoundedSemaphore, asyncio.Queue, asyncio.create_subprocess_exec(), and asyncio.create_subprocess_shell().
https://docs.python.org/3/whatsnew/3.8.html

Solution is simply to remove the loop from:

result = await asyncio.wait_for(
    self._worker_co(*args, **kwargs),
    self._max_task_time,
)
@thehesiod
Copy link

calidog is MIA and I wrote most of this code, I have a fork: https:/thehesiod/asyncpool feel free to log there and I can update. We'll have to come up with the pypi package name though ;)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants