This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author veky
Recipients BTaskaya, benjamin.peterson, brett.cannon, nascheme, ncoghlan, pablogsal, serhiy.storchaka, thautwarm, veky
Date 2020-02-18.16:13:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1582042384.45.0.58890653474.issue34822@roundup.psfhosted.org>
In-reply-to
Content
I wrote some AST analyzers, and this would have simplified my code. So I welcome it. :-)

However, it means people might be tempted to write 

    a[b:c, d]    as    a[(b:c, d)]

(or at least expect it to work -- same as `a[b, c]` can now be written as `a[(b, c)]`). We aren't going to allow this?
History
Date User Action Args
2020-02-18 16:13:04vekysetrecipients: + veky, brett.cannon, nascheme, ncoghlan, benjamin.peterson, serhiy.storchaka, pablogsal, thautwarm, BTaskaya
2020-02-18 16:13:04vekysetmessageid: <1582042384.45.0.58890653474.issue34822@roundup.psfhosted.org>
2020-02-18 16:13:04vekylinkissue34822 messages
2020-02-18 16:13:04vekycreate