Re: [Python-Dev] socket.c, _rbufsize

2008-11-27 Thread Gregory P. Smith
I've created http://bugs.python.org/issue4448 to track this issue. On Thu, Nov 27, 2008 at 6:50 AM, Kristján Valur Jónsson < [EMAIL PROTECTED]> wrote: > I came across this in socket.c: > > # _rbufsize is the suggested recv buffer size. It is *strictly* > > # obeyed within readli

[Python-Dev] socket.c, _rbufsize

2008-11-27 Thread Kristján Valur Jónsson
I came across this in socket.c: # _rbufsize is the suggested recv buffer size. It is *strictly* # obeyed within readline() for recv calls. If it is larger than # default_bufsize it will be used for recv calls within read(). What I worry about is the readline() case. Is t