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 pitrou
Recipients amaury.forgeotdarc, christian.heimes, giampaolo.rodola, ialbert, pitrou, wplappert
Date 2009-01-18.12:11:40
SpamBayes Score 3.114011e-06
Marked as misclassified No
Message-id <1232280702.8.0.014971669371.issue4565@psf.upfronthosting.co.za>
In-reply-to
Content
The work to rewrite the IO stack in C will solve this problem as it will
probably solve most performance-related IO problems in py3k.

Amaury and I have been progressing a lot, the rewrite is now a real
branch in SVN at branches/io-c/. On this very issue, it is only 30%
slower than 2.x, which is quite good given the layered nature of the IO
stack and the fact that text IO does a lot more than in 2.x (it
translates newlines and encodes the text).

(actually, if I add an explicit .encode('utf8') call to the 2.x version
of the script, it becomes slower than our io-c rewrite)
History
Date User Action Args
2009-01-18 12:11:43pitrousetrecipients: + pitrou, amaury.forgeotdarc, giampaolo.rodola, christian.heimes, wplappert, ialbert
2009-01-18 12:11:42pitrousetmessageid: <1232280702.8.0.014971669371.issue4565@psf.upfronthosting.co.za>
2009-01-18 12:11:41pitroulinkissue4565 messages
2009-01-18 12:11:40pitroucreate