STINNER Victor <victor.stin...@haypocalc.com> added the comment:

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 "... = ..".

----------
nosy: +haypo

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue4857>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to