> I'm saying that the mode-shift suggestion:
>

>     func(arg, name=value,
>          *,  # change to auto-fill mode
>          alpha, beta, gamma,
>          )
>
> will rule out any further relaxation on that restriction, and that is a
> point against it. That's a concrete enhancement that we might allow some
> time. Whether *I personally* want that enhancement is irrelevant.
>

It doesn't necessarily have to.

There's always the possibility of a second mode switch, perhaps using the
same indicator as the one related to positional-only signature syntax:

func(arg, name=value,
         *,  # change to auto-fill mode
         alpha, beta, gamma,
         /, # change back to normal positional mode
        delta, epsilon
         )
_______________________________________________
Python-ideas mailing list -- python-ideas@python.org
To unsubscribe send an email to python-ideas-le...@python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/python-ideas@python.org/message/SURHWHQUW3P63E3CZBXN5764GXP6TUES/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to