On Thu, Oct 11, 2012 at 4:13 PM, Kevin Anthony <kevin.s.anth...@gmail.com> wrote: > I'm not supprised... and understand why it's happening. I'm asking how to > get around it. > > Basically i'm asking how to override, if i can, the `=`
You cannot override assignment of local variables. To get around it, use slicing as Dave suggested, or use an attribute instead of a local variable. -- http://mail.python.org/mailman/listinfo/python-list