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 Paolo Veglia
Recipients Jonathan Kamens, Paolo Veglia, marcjofre, martin.panter, pje
Date 2016-02-25.09:13:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1456391627.32.0.879215947922.issue24291@psf.upfronthosting.co.za>
In-reply-to
Content
I had the same issue as Jonathan with Python 3.5.1, big chunks of data get truncated (to ~85KB).

The problem disappears when splitting original data into smaller chunks:

    def _write(self,data):
        chunk_size = 1024
        for chunk in (data[i:i+chunk_size] for i in range(0, len(data), chunk_size)):
            self.stdout.write(chunk)
History
Date User Action Args
2016-02-25 09:13:47Paolo Vegliasetrecipients: + Paolo Veglia, pje, martin.panter, Jonathan Kamens, marcjofre
2016-02-25 09:13:47Paolo Vegliasetmessageid: <1456391627.32.0.879215947922.issue24291@psf.upfronthosting.co.za>
2016-02-25 09:13:47Paolo Veglialinkissue24291 messages
2016-02-25 09:13:46Paolo Vegliacreate