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 dacut
Recipients cryvate, dacut, serhiy.storchaka
Date 2017-11-29.22:20:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1511994032.16.0.213398074469.issue32117@psf.upfronthosting.co.za>
In-reply-to
Content
Hm... that leaves the only production for expression_list as:
subscription ::= primary "[" expression_list "]"

And I'm not sure that this shouldn't also be replaced by starred_list. It's not accepted today, though:

In [6]: a[1,*(4, 5, 6)]
  File "<ipython-input-6-ba56159162e9>", line 1
    a[1,*(4, 5, 6)]
        ^
SyntaxError: invalid syntax

I will ask about this again on python-dev@
History
Date User Action Args
2017-11-29 22:20:32dacutsetrecipients: + dacut, serhiy.storchaka, cryvate
2017-11-29 22:20:32dacutsetmessageid: <1511994032.16.0.213398074469.issue32117@psf.upfronthosting.co.za>
2017-11-29 22:20:32dacutlinkissue32117 messages
2017-11-29 22:20:32dacutcreate