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 vstinner
Recipients georg.brandl, jura05, vstinner
Date 2009-01-06.13:18:48
SpamBayes Score 0.0
Marked as misclassified No
Message-id <1231247928.79.0.686801835956.issue4857@psf.upfronthosting.co.za>
In-reply-to
Content
Extract of the grammar:
  target          ::=  identifier | ...
  target_list     ::=  target ("," target)* [","]
  assignment_stmt ::=  (target_list "=")+ ...
  augmented_assignment_stmt ::=  target augop ...
  augop                     ::=  "+=" | ...

So there is only one possible target for "... += ..." and multiple 
targets for "... = ..".
History
Date User Action Args
2009-03-09 14:29:55georg.brandlsetspambayes_score: 0.697909 -> 0.0
2009-01-06 13:18:49vstinnersetrecipients: + vstinner, georg.brandl, jura05
2009-01-06 13:18:48vstinnersetmessageid: <1231247928.79.0.686801835956.issue4857@psf.upfronthosting.co.za>
2009-01-06 13:18:48vstinnerlinkissue4857 messages
2009-01-06 13:18:48vstinnercreate