-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
add implicit named tuple and keyword argument names #34331
Conversation
Based on the doctest failure, it seems this inadvertently made unprovided required kwargs produce an |
55fe4f6
to
ec6fb36
Compare
I think the dot syntax part, ie |
I understand wanting to be cautious here, but I'm pretty sure languages tend to have either both of these features or neither. Also the |
- `x` implies `x=x` - `a.b` implies `b=a.b` closes #29333
ec6fb36
to
cf34a11
Compare
- `x` implies `x=x` - `a.b` implies `b=a.b` closes JuliaLang#29333
- `x` implies `x=x` - `a.b` implies `b=a.b` closes JuliaLang#29333
- `x` implies `x=x` - `a.b` implies `b=a.b` closes #29333
This implements #29333.
I went ahead and added dot syntax as well, i.e.
a.b
impliesb=a.b
.