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 kghose
Recipients carlosdf, jnoller, kghose, terrence
Date 2010-01-29.19:17:23
SpamBayes Score 0.00023147979
Marked as misclassified No
Message-id <1264792645.23.0.437205179048.issue6766@psf.upfronthosting.co.za>
In-reply-to
Content
Even with the patch, I can not resolve this problem. I can reproduce the problem with the patched version with the following code. My system is:

Python 2.6.4 (r264:75821M, Oct 27 2009, 19:48:32)
IPython 0.10
Platform is Mac OS X (10.5.8) Darwin Kernel Version 9.8.0: Wed Jul 15 16:55:01 PDT 2009

import multiprocessing as mp

def f(d):
  d['f'] = {}
  d['f']['msg'] = 'I am here'

manager = mp.Manager()
d = manager.dict()

p = mp.Process(target=f, args=(d,))

p.start()
p.join()

print d

d = {}
f(d)

print d

Output:

{'f': {}}
{'f': {'msg': 'I am here'}}
History
Date User Action Args
2010-01-29 19:17:25kghosesetrecipients: + kghose, jnoller, carlosdf, terrence
2010-01-29 19:17:25kghosesetmessageid: <1264792645.23.0.437205179048.issue6766@psf.upfronthosting.co.za>
2010-01-29 19:17:23kghoselinkissue6766 messages
2010-01-29 19:17:23kghosecreate