-
Notifications
You must be signed in to change notification settings - Fork 949
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.coroutine has been deprecated since Python 3.8 and will be removed in future #513
Comments
duplicates #467 but with more complete information. |
This issue is already solved in branch 3.0. |
Since 3.0.0 is the new default branch and #564 was merged, this issue is solved. |
Please be aware, we are supporting 3.7 also so removing co-routines completely would break things for pymodbus on python3.7 |
Isn't this decorator not just a compatible thing to async/await syntax? |
Well, it looks like I have just replaced one decorator, but replaced it with modern syntax. |
My memory is fading :P , Thanks for taking care. |
Versions
Description
asyncio.coroutine has been deprecated since Python 3.8 and will be removed in future. Use
async def
instead.Code and Logs
The text was updated successfully, but these errors were encountered: