[issue7050] Augmented assignment of tuple crashes IDLE

2009-10-03 Thread Benjamin Peterson
Benjamin Peterson added the comment: Good catch! Fixed in r75223. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue7050] Augmented assignment of tuple crashes IDLE

2009-10-03 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: >From the plain console: >>> a, b +=2 SystemError: invalid node type (24) for augmented assignment Python 3.0 used to be correct: SyntaxError: illegal expression for augmented assignment -- assignee: -> benjamin.peterson nosy: +amaury.forgeotdar

[issue7050] Augmented assignment of tuple crashes IDLE

2009-10-03 Thread Mark Fitzgerald
Changes by Mark Fitzgerald : -- title: (x,y) += (1,2) crashes IDLE -> Augmented assignment of tuple crashes IDLE ___ Python tracker ___ ___