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 mkc
Recipients akuchling, giampaolo.rodola, josiahcarlson, klimkin, mkc
Date 2008-02-13.17:35:12
SpamBayes Score 0.09232976
Marked as misclassified No
Message-id <1202924114.12.0.657672683972.issue2073@psf.upfronthosting.co.za>
In-reply-to
Content
The other place I see the constant is in asyncore.py:

class dispatcher_with_send(dispatcher):

    def __init__(self, sock=None, map=None):
        dispatcher.__init__(self, sock, map)
        self.out_buffer = ''

    def initiate_send(self):
        num_sent = 0
        num_sent = dispatcher.send(self, self.out_buffer[:512])
        self.out_buffer = self.out_buffer[num_sent:]


This code seems to be undocumented and perhaps unused, but until/unless
it's deleted, it probably ought to be fixed.
History
Date User Action Args
2008-02-13 17:35:14mkcsetspambayes_score: 0.0923298 -> 0.09232976
recipients: + mkc, akuchling, josiahcarlson, klimkin, giampaolo.rodola
2008-02-13 17:35:14mkcsetspambayes_score: 0.0923298 -> 0.0923298
messageid: <1202924114.12.0.657672683972.issue2073@psf.upfronthosting.co.za>
2008-02-13 17:35:13mkclinkissue2073 messages
2008-02-13 17:35:12mkccreate