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 dusan76
Recipients John_81, Justin Patrin, Richard.Fothergill, Snidhi, Waldemar.Parzonka, carlosdf, dan.oreilly, dariosg, davin, dusan76, jnoller, kghose, python-dev, sbt, terrence, yselivanov
Date 2019-02-28.16:44:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1551372256.32.0.966067045923.issue6766@roundup.psfhosted.org>
In-reply-to
Content
Hey folks,

This is still an issue with 3.7.2

===============================================

# Python 3.7.2 (default, Jan 10 2019, 23:51:51) 
# [GCC 8.2.1 20181127] on linux

from multiprocessing import  Manager

manager = Manager()
d = manager.dict({})

d["test"] = {"a": 123}
# update fails
d["test"]["a"] = 321
# add fails
d["test"]["b"] = 321

print(d)
History
Date User Action Args
2019-02-28 16:44:16dusan76setrecipients: + dusan76, jnoller, carlosdf, terrence, kghose, python-dev, sbt, dariosg, yselivanov, Richard.Fothergill, dan.oreilly, Waldemar.Parzonka, davin, Justin Patrin, John_81, Snidhi
2019-02-28 16:44:16dusan76setmessageid: <1551372256.32.0.966067045923.issue6766@roundup.psfhosted.org>
2019-02-28 16:44:16dusan76linkissue6766 messages
2019-02-28 16:44:16dusan76create