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 tzickel
Recipients Windson Yang, tzickel
Date 2018-07-21.09:12:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
>>> from multiprocessing import Pool
>>> import gc
>>> a = Pool(10)
>>> del a
>>> gc.collect()
0
>>>

After this, there are still left behind Process (Pool) or Dummy (ThreadPool) and big _cache data (If you did something with it) which lingers till the process dies.

You are correct on the other issue (I'm using and reading the Python 2 documentation which does not have that...).
History
Date User Action Args
2018-07-21 09:12:20tzickelsetrecipients: + tzickel, Windson Yang
2018-07-21 09:12:20tzickelsetmessageid: <[email protected]>
2018-07-21 09:12:20tzickellinkissue34172 messages
2018-07-21 09:12:20tzickelcreate