Re: dictionary update

2006-08-15 Thread Steve Holden
Chris wrote: > I have a instance attribute self.xds and a local variable xds in the > instance . Both are dictionaries. I understand that I can update > self.xds with xds as follows: self.xds.update(xds) > > However I have many instance attributes, self.i, and local variables i. > I'd like to be

Re: dictionary update

2006-08-15 Thread Sion Arrowsmith
Chris <[EMAIL PROTECTED]> wrote: >I have a instance attribute self.xds and a local variable xds in the >instance . Both are dictionaries. I understand that I can update >self.xds with xds as follows: self.xds.update(xds) > >However I have many instance attributes, self.i, and local variables i.