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 cbay
Recipients cbay, giampaolo.rodola, vstinner
Date 2010-03-26.18:09:21
SpamBayes Score 0.0032118973
Marked as misclassified No
Message-id <1269626963.62.0.325930435582.issue8240@psf.upfronthosting.co.za>
In-reply-to
Content
I forgot to talk about the conditions in which I stumbled upon that bug. I use a cStringIO.StringIO as a send buffer. When the socket is ready to send data, I call ssl_socket.send(send_buffer.getvalue()).

Unfortunately, two consecutive calls to send_buffer.getvalue() may return a different object (i.e. a string with a different memory address).
History
Date User Action Args
2010-03-26 18:09:23cbaysetrecipients: + cbay, vstinner, giampaolo.rodola
2010-03-26 18:09:23cbaysetmessageid: <1269626963.62.0.325930435582.issue8240@psf.upfronthosting.co.za>
2010-03-26 18:09:22cbaylinkissue8240 messages
2010-03-26 18:09:21cbaycreate