This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Andrew.Hays
Recipients Andrew.Hays
Date 2010-01-31.21:18:25
SpamBayes Score 0.0002902716
Marked as misclassified No
Message-id <1264972707.42.0.603624170105.issue7823@psf.upfronthosting.co.za>
In-reply-to
Content
[{}]*3 should produce a list of dictionaries that are 3 length long, which it does.  However, one would expect that if you assign something to the keyword 'abc' in the first dicitonary (e.g., x[0]['abc'] = 'def') that the other dictionaries would remain blank (e.g.,  x = [{'abc': 'def'}, {}, {}].  However, it appears that each dictionary is filled (e.g., x = [{'abc':'def'}, {'abc':'def'}, {'abc':'def'}]).

Creating a list of dictionaries like this [{}, {}, {}] or appending a dictionary to a list like this list.append({}) does NOT produce this same effect, it produces the desired effect.
History
Date User Action Args
2010-01-31 21:18:27Andrew.Hayssetrecipients: + Andrew.Hays
2010-01-31 21:18:27Andrew.Hayssetmessageid: <1264972707.42.0.603624170105.issue7823@psf.upfronthosting.co.za>
2010-01-31 21:18:25Andrew.Hayslinkissue7823 messages
2010-01-31 21:18:25Andrew.Hayscreate