Neal Becker <ndbecker2 at gmail.com> wrote: > > class X (object): > pass > > X() += 2 > > > SyntaxError: can't assign to function call [snip] > Does anyone else think this would be a good addition to Python? No. += implies assignment. As the syntax error states, "can't assign to function call". -1 - Josiah