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 xtreak
Recipients benjamin.peterson, emilyemorehouse, gvanrossum, serhiy.storchaka, xtreak
Date 2018-09-12.05:37:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1536730651.64.0.956365154283.issue34641@psf.upfronthosting.co.za>
In-reply-to
Content
There seems to be some of the similar cases that have tests added as part of c960f26044edaea6669e60859ecf590c63c65e62 and the original error message added at 3e0055f8c65c407e74ce476b8e2b1fb889723514.

Existing tests : 

>>> f(x()=2)
Traceback (most recent call last):
SyntaxError: keyword can't be an expression
>>> f(a or b=1)
Traceback (most recent call last):
SyntaxError: keyword can't be an expression
>>> f(x.y=1)
Traceback (most recent call last):
SyntaxError: keyword can't be an expression


Thanks
History
Date User Action Args
2018-09-12 05:37:31xtreaksetrecipients: + xtreak, gvanrossum, benjamin.peterson, serhiy.storchaka, emilyemorehouse
2018-09-12 05:37:31xtreaksetmessageid: <1536730651.64.0.956365154283.issue34641@psf.upfronthosting.co.za>
2018-09-12 05:37:31xtreaklinkissue34641 messages
2018-09-12 05:37:31xtreakcreate