Hi Steven

Recall that my proposal implies
    >>> d = dict()
    >>> d[a=1, b=2] = 42
    >>> d[a=1, b=2]
    42

Recall that your proposal implies
    >>> d = dict()
    >>> d[a=1, b=2] = 42
    TypeError: wrapper __setitem__ doesn't take keyword arguments


>
_______________________________________________
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/XR66NQ4LJ4CFK3JAQHQXJLDJGK5MAF6V/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to