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 berker.peksag
Recipients berker.peksag, martin.panter, mystor, serhiy.storchaka, yan12125
Date 2016-11-07.17:52:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1478541171.47.0.228607433283.issue25677@psf.upfronthosting.co.za>
In-reply-to
Content
With patch applied:

  File "x.py", line 2
    1 + 1 = 2
    ^
SyntaxError: can't assign to operator

Without patch:

  File "x.py", line 2
    1 + 1 = 2
       ^
SyntaxError: can't assign to operator

The caret is located at the wrong place in both examples (which is the actual bug that needs to be fixed here.) This isn't a high priority bug and I think people can live with the current behavior until this is properly fixed. Pushing a premature patch will only introduce more code churn.
History
Date User Action Args
2016-11-07 17:52:51berker.peksagsetrecipients: + berker.peksag, martin.panter, serhiy.storchaka, yan12125, mystor
2016-11-07 17:52:51berker.peksagsetmessageid: <1478541171.47.0.228607433283.issue25677@psf.upfronthosting.co.za>
2016-11-07 17:52:51berker.peksaglinkissue25677 messages
2016-11-07 17:52:51berker.peksagcreate