We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Python 3.10 has removed the use of the loop argument in async io.
The issue is in line 512 and 522 in connection.pyx where it passes in the loop loop=loop. Running on 3.10 and later can be determined by:
loop=loop
use_loop = True if sys.version_info < (3, 10) else False
and this can be used to decide whether to pass in the loop parameter or not.
The text was updated successfully, but these errors were encountered:
Fixed
Sorry, something went wrong.
Remove loop argument. (#15)
loop
6b1d2f8
No branches or pull requests
Python 3.10 has removed the use of the loop argument in async io.
The issue is in line 512 and 522 in connection.pyx where it passes in the loop
loop=loop
. Running on 3.10 and later can be determined by:use_loop = True if sys.version_info < (3, 10) else False
and this can be used to decide whether to pass in the loop parameter or not.
The text was updated successfully, but these errors were encountered: