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 gregory.p.smith
Recipients abo, astrand, benjamin.peterson, christian.heimes, collinwinter, djc, dsagal, exarkun, flox, giampaolo.rodola, gjb1002, gregory.p.smith, grossetti, jonash, jyasskin, kanaka, nnorwitz, oefe, r.david.murray, santoni, shaphiro, siemer, tom_culliton, yonas
Date 2010-10-04.21:50:29
SpamBayes Score 0.008223735
Marked as misclassified No
Message-id <1286229031.65.0.527072643951.issue1731717@psf.upfronthosting.co.za>
In-reply-to
Content
A workaround for those still having problems with this:

 stub out subprocess._cleanup with a no-op method.

It it only useful if your app is ever using subprocess and forgetting to call wait() on Popen objects before they are deleted.  If you are, you can keep a reference to the old _cleanup() method and periodically call it on your own.

http://bugs.python.org/issue1236 effectively demonstrates this.
History
Date User Action Args
2010-10-04 21:50:32gregory.p.smithsetrecipients: + gregory.p.smith, nnorwitz, collinwinter, abo, astrand, siemer, exarkun, gjb1002, oefe, giampaolo.rodola, christian.heimes, dsagal, jyasskin, tom_culliton, benjamin.peterson, djc, grossetti, r.david.murray, yonas, jonash, flox, kanaka, santoni, shaphiro
2010-10-04 21:50:31gregory.p.smithsetmessageid: <1286229031.65.0.527072643951.issue1731717@psf.upfronthosting.co.za>
2010-10-04 21:50:30gregory.p.smithlinkissue1731717 messages
2010-10-04 21:50:29gregory.p.smithcreate