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 serhiy.storchaka
Recipients Arfrever, gennad, pitrou, serhiy.storchaka, vstinner
Date 2014-02-09.10:01:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1391940070.01.0.338541830421.issue19255@psf.upfronthosting.co.za>
In-reply-to
Content
Unfortunately this patch doesn't fix issue19021. Popen.__del__ is called when whiping the idlelib.rpc module which was collected in a weaklist. But the builtins module also was collected in a weaklist and wiped before idlelib.rpc.

Here is revised patch which fixes issue19021. It defers wiping of the builtins and sys modules (this partially restores 3.3 algorithm) and fixes other related issues (some of these fixes should be backported to older versions).
History
Date User Action Args
2014-02-09 10:01:10serhiy.storchakasetrecipients: + serhiy.storchaka, pitrou, vstinner, Arfrever, gennad
2014-02-09 10:01:10serhiy.storchakasetmessageid: <1391940070.01.0.338541830421.issue19255@psf.upfronthosting.co.za>
2014-02-09 10:01:09serhiy.storchakalinkissue19255 messages
2014-02-09 10:01:09serhiy.storchakacreate