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 pablogsal
Recipients BTaskaya, arekm, gaborjbernat, pablogsal, vstinner
Date 2020-03-15.19:47:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1584301675.21.0.111025653116.issue39360@roundup.psfhosted.org>
In-reply-to
Content
> Hummm, the test case from this bug is precisely the test case in PR 19009 so it should not hang.

Oh, actually I am wrong as this is a different issue I had in mind. PR 19009 should fix the case reported in https://bugs.python.org/issue38744 and this equivalent:

          from multiprocessing import Pool
            class A:
                def __init__(self):
                    self.pool = Pool(processes=1)
            def test():
                problem = A()
                problem.pool.map(float, tuple(range(10)))
            if __name__ == "__main__":
                test()

Notice that in this code there is no __del__ call.
History
Date User Action Args
2020-03-15 19:47:55pablogsalsetrecipients: + pablogsal, arekm, vstinner, gaborjbernat, BTaskaya
2020-03-15 19:47:55pablogsalsetmessageid: <1584301675.21.0.111025653116.issue39360@roundup.psfhosted.org>
2020-03-15 19:47:55pablogsallinkissue39360 messages
2020-03-15 19:47:55pablogsalcreate