[issue9801] Can not use append/extend to lists in a multiprocessing manager dict
Antoine Pitrou
report at bugs.python.org
Thu Sep 9 01:45:39 CEST 2010
Antoine Pitrou <pitrou at free.fr> added the comment:
Similarly:
>>> x = man.list()
>>> x.append({})
>>> x[0]
{}
>>> x[0]['a'] = 5
>>> x[0]
{}
Lots of fun!
----------
nosy: +pitrou
_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue9801>
_______________________________________
More information about the Python-bugs-list
mailing list