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
Should compile (something like)
func(long_name_1=, long_name_2=)
to
func(long_name_1=long_name_1, long_name_2=long_name_2)
Alternative syntaxes:
func(=long_name_1, =long_name_2) func(...=long_name_1, ...=long_name_2)
The text was updated successfully, but these errors were encountered:
Whatever syntax we pick here should also be supported in partial application and anonymous namedtuples.
Sorry, something went wrong.
The func(...=long_name_1, ...=long_name_2) syntax is now live on coconut-develop>=3.0.0-post_dev7.
func(...=long_name_1, ...=long_name_2)
coconut-develop>=3.0.0-post_dev7
Add f(...=name) syntax
060c9a8
Resolves #743.
1688dbf
No branches or pull requests
Should compile (something like)
to
Alternative syntaxes:
The text was updated successfully, but these errors were encountered: