Richard Oudkerk added the comment:

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().

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue18329>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to