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 tlxxzj
Recipients Prof Plum, tlxxzj
Date 2017-09-22.10:52:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1506077577.68.0.492524457728.issue31092@psf.upfronthosting.co.za>
In-reply-to
Content
# code reproduce bug
# KeyError in lib\multiprocessing\managers.py in incref 

import multiprocessing as mp
from time import sleep

def func(queue):
    pass

if __name__ == '__main__':
    manager = mp.Manager()

    pool = mp.Pool(1)

    queue = manager.Queue()
    r = pool.apply_async(func, args = [queue])
    #sleep(1)
    queue = None

    pool.close()
    pool.join()
History
Date User Action Args
2017-09-22 10:52:57tlxxzjsetrecipients: + tlxxzj, Prof Plum
2017-09-22 10:52:57tlxxzjsetmessageid: <1506077577.68.0.492524457728.issue31092@psf.upfronthosting.co.za>
2017-09-22 10:52:57tlxxzjlinkissue31092 messages
2017-09-22 10:52:57tlxxzjcreate