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
When supplying sync functions and coroutine functions as callbacks, anyio should accept and supply keyword arguments when calling them.
anyio
The following functions accept and supply *args to callbacks, but not keyword arguments:
*args
anyio.to_thread.run_sync()
anyio.to_process.run_sync()
anyio.from_thread.run_sync()
The text was updated successfully, but these errors were encountered:
The relevant trio discussion is here. I much prefer solving this in concert with trio.
Sorry, something went wrong.
No branches or pull requests
When supplying sync functions and coroutine functions as callbacks,
anyio
should accept and supply keyword arguments when calling them.The following functions accept and supply
*args
to callbacks, but not keyword arguments:anyio.to_thread.run_sync()
anyio.to_process.run_sync()
anyio.from_thread.run_sync()
The text was updated successfully, but these errors were encountered: