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 Jimbofbx
Recipients Jimbofbx
Date 2010-09-08.19:23:19
SpamBayes Score 3.0625262e-07
Marked as misclassified No
Message-id <1283973802.38.0.869176624785.issue9801@psf.upfronthosting.co.za>
In-reply-to
Content
tested python 3.1.2

Man = multiprocessing.Manager();
d = man.dict();
d['l'] = list();
d['l'].append("hey");
print(d['l']);
>>> []

using debugger reveals a KeyError. Extend also does not work. Only thing that works is += which means you can't insert actual tuples or lists into the list. This was all done on a single process
History
Date User Action Args
2010-09-08 19:23:22Jimbofbxsetrecipients: + Jimbofbx
2010-09-08 19:23:22Jimbofbxsetmessageid: <1283973802.38.0.869176624785.issue9801@psf.upfronthosting.co.za>
2010-09-08 19:23:19Jimbofbxlinkissue9801 messages
2010-09-08 19:23:19Jimbofbxcreate