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 xiang.zhang
Recipients Daniel Moore, davin, paul.moore, steve.dower, tim.golden, xiang.zhang, zach.ware
Date 2017-05-16.07:51:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1494921073.34.0.807342882627.issue30301@psf.upfronthosting.co.za>
In-reply-to
Content
Related commit is bdb1cf1ca56db25b33fb15dd91eef2cc32cd8973. A simple reproduce snippet:

import multiprocessing as mp

def foo(q):
    q.put('hello')
    assert not q.empty()

if __name__ == '__main__':
    mp.set_start_method('spawn')
    q = mp.SimpleQueue()
    p = mp.Process(target=foo, args=(q,))
    p.start()
    print(q.get())
    p.join()
History
Date User Action Args
2017-05-16 07:51:13xiang.zhangsetrecipients: + xiang.zhang, paul.moore, tim.golden, zach.ware, steve.dower, davin, Daniel Moore
2017-05-16 07:51:13xiang.zhangsetmessageid: <1494921073.34.0.807342882627.issue30301@psf.upfronthosting.co.za>
2017-05-16 07:51:13xiang.zhanglinkissue30301 messages
2017-05-16 07:51:13xiang.zhangcreate