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 sbt
Recipients christian.heimes, sbt, serhiy.storchaka, socketpair
Date 2013-07-04.16:06:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1372953992.63.0.370933062597.issue18329@psf.upfronthosting.co.za>
In-reply-to
Content
Using

        while True:
            if not fileobj.read(8192):
                break

instead of

        for line in fileobj:
            pass

results in higher throughput, but a similar slowdown with makefile().  So this is not a problem specific to readline().
History
Date User Action Args
2013-07-04 16:06:32sbtsetrecipients: + sbt, christian.heimes, socketpair, serhiy.storchaka
2013-07-04 16:06:32sbtsetmessageid: <1372953992.63.0.370933062597.issue18329@psf.upfronthosting.co.za>
2013-07-04 16:06:32sbtlinkissue18329 messages
2013-07-04 16:06:32sbtcreate