I need to read strings written by multiprocessing.Process instances from the main process. I already use Managers and queues to pass arguments to processes, so using the Man
Simply put the string in a dict:
dict
d = manager.dict() d['state'] = 'xyz'
As strings themselves are immutable, sharing one directly would not be as useful.