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 shanip
Recipients shanip
Date 2015-01-18.13:33:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1421588019.18.0.707676170756.issue23267@psf.upfronthosting.co.za>
In-reply-to
Content
Multiprocessing pool.py gets SimpleQueue objects as inqueue and outqueue.
when it terminates, it doesn't call the close() method of the queues' readers and writers.
As a results, 4 file pipes leak in one pool termination.

Expected: The pool closes reader and writer pipes of the inqueue and outqueue when it terminates.
What did happen: the pool doesn't close the pipes. 4 pipes leak.
History
Date User Action Args
2015-01-18 13:33:39shanipsetrecipients: + shanip
2015-01-18 13:33:39shanipsetmessageid: <1421588019.18.0.707676170756.issue23267@psf.upfronthosting.co.za>
2015-01-18 13:33:39shaniplinkissue23267 messages
2015-01-18 13:33:39shanipcreate