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
_
provide a decorator to alias keyword kwargs into _ suffix alternatives
@six.pep492 def task1(ham, async_): return async_ @six.pep492 def task2(ham, await_): return await_
so that
ob = object() assert ( ob is task1(async=ob) is task1(ob) is task1(async_=ob) is task2(await=ob) is task2(ob) is task2(await_=ob) )
See also amyreese/fissix#15
The text was updated successfully, but these errors were encountered:
No branches or pull requests
provide a decorator to alias keyword kwargs into
_
suffix alternativesso that
See also amyreese/fissix#15
The text was updated successfully, but these errors were encountered: