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 vstinner
Recipients alexandre.vassalotti, amaury.forgeotdarc, hagen, pitrou, vstinner
Date 2009-04-06.12:02:55
SpamBayes Score 0.00025445884
Marked as misclassified No
Message-id <1239019377.28.0.966057827814.issue3873@psf.upfronthosting.co.za>
In-reply-to
Content
Note about my patch: the buffer should be truncated after
PyBytes_Concat(&self->buffer.pybytes, data) to avoid very long buffer.
Something like: self->buffer.pybytes += data; self->buffer.pybytes =
self->buffer.pybytes[index:]; self->buffer.index=0;
History
Date User Action Args
2009-04-06 12:02:57vstinnersetrecipients: + vstinner, amaury.forgeotdarc, pitrou, alexandre.vassalotti, hagen
2009-04-06 12:02:57vstinnersetmessageid: <1239019377.28.0.966057827814.issue3873@psf.upfronthosting.co.za>
2009-04-06 12:02:56vstinnerlinkissue3873 messages
2009-04-06 12:02:55vstinnercreate