Gustavo Niemeyer wrote: > > This note is mostly for entertainment purposes. > > > > >>> x = (1, 2, 3) > [...] > > >>> x += (4, 5, 6) > > Hey, shouldn't this raise an exception? Should: x = 1 x += 1 raise an exception? Neil