[dabo-users] Python bug or is it me?

2009-08-18 Thread lalong1
I am trying to build a list of dictionaries for the report writer and have run into a strange one. I need to build multiple records with some duplicated data. 1) rcd is my template record and I append it to the list (rcdlist). 2) I change the value of 'status' in the dictionary and append it

Re: [dabo-users] Python bug or is it me?

2009-08-18 Thread Paul McNett
lalo...@charter.net wrote: I am trying to build a list of dictionaries for the report writer and have run into a strange one. I need to build multiple records with some duplicated data. It is you. Python dicts (and lists) are mutable, whereas most other types are immutable. So when you

Re: [dabo-users] Python bug or is it me?

2009-08-18 Thread lalong1
Gr8! tyvm -Original Message- From: dabo-users-boun...@leafe.com [mailto:dabo-users-boun...@leafe.com] On Behalf Of Paul McNett Sent: Wednesday, August 19, 2009 1:15 AM To: Dabo Users list Subject: Re: [dabo-users] Python bug or is it me? lalo...@charter.net wrote: I am trying