On Fri, 7 Aug 2020 at 14:14, Jonathan Fine <jfine2...@gmail.com> wrote:
> At present
>     d[1, 2]
>     d[(1, 2)]
> are semantically equivalent.
>
> There is a proposal, that
>     d[1, 2, a=3, b=4]
>     d[(1, 2), a=3, b=4]
> be semantically equivalent.
>
> I find this troubling, for example because
>    fn(1, 2, a=3, b=4)
>    fn((1, 2), a=3, b=4)
> are semantically different.

I think I've understood your point. To be sure, what's the Steven proposal?
_______________________________________________
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/QDYCO5FOS26YYUTX4RV4LTPBAMCW6C3P/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to