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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, amcnabb, pitrou
Date 2010-02-18.09:33:26
SpamBayes Score 0.009543238
Marked as misclassified No
Message-id <1266485608.19.0.65950050941.issue7955@psf.upfronthosting.co.za>
In-reply-to
Content
This is by design, for performance the C TextIOWrapper stores the encoded strings in a list, and calls buffer.write() less often.
You may try to add
   stdout._CHUNK_SIZE = 1
and get the _pyio behavior.
History
Date User Action Args
2010-02-18 09:33:28amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, pitrou, amcnabb
2010-02-18 09:33:28amaury.forgeotdarcsetmessageid: <1266485608.19.0.65950050941.issue7955@psf.upfronthosting.co.za>
2010-02-18 09:33:26amaury.forgeotdarclinkissue7955 messages
2010-02-18 09:33:26amaury.forgeotdarccreate