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 giampaolo.rodola, gregory.p.smith, jwarkentin
Date 2011-02-06.01:14:33
SpamBayes Score 0.00013505638
Marked as misclassified No
Message-id <1296954874.2.0.108159780671.issue11109@psf.upfronthosting.co.za>
In-reply-to
Content
I believe that is good.  I'll commit it after the 3.2 release has been cut (we're in release candidate release blocker only lockdown right now).

Looking at ForkingMixIn.collect_children() there appears to be another buglet: it loops over self.active_children and calls self.active_children.remove(pid).  This modification of the list while looping over it will cause it to skip the next item in the list.  For every child waited on successfully, it skips checking one of the others.
History
Date User Action Args
2011-02-06 01:14:34gregory.p.smithsetrecipients: + gregory.p.smith, giampaolo.rodola, jwarkentin
2011-02-06 01:14:34gregory.p.smithsetmessageid: <1296954874.2.0.108159780671.issue11109@psf.upfronthosting.co.za>
2011-02-06 01:14:33gregory.p.smithlinkissue11109 messages
2011-02-06 01:14:33gregory.p.smithcreate