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 rosslagerwall
Recipients Alexey.Agapitov, giampaolo.rodola, neologix, rosslagerwall
Date 2011-07-05.19:31:47
SpamBayes Score 2.320998e-08
Marked as misclassified No
Message-id <1309894308.1.0.33597003372.issue12502@psf.upfronthosting.co.za>
In-reply-to
Content
Looks good, the patch seems to fix the problem.
This section of code indicates that the accepting socket shouldn't be in the write set...

def handle_write_event(self):
    if self.accepting:
        # Accepting sockets shouldn't get a write event.
        # We will pretend it didn't happen.
        return
History
Date User Action Args
2011-07-05 19:31:48rosslagerwallsetrecipients: + rosslagerwall, giampaolo.rodola, neologix, Alexey.Agapitov
2011-07-05 19:31:48rosslagerwallsetmessageid: <1309894308.1.0.33597003372.issue12502@psf.upfronthosting.co.za>
2011-07-05 19:31:47rosslagerwalllinkissue12502 messages
2011-07-05 19:31:47rosslagerwallcreate