[Python-checkins] python/dist/src/Doc/lib libxreadlines.tex,1.2,1.2.4.1

fdrake@sourceforge.net fdrake@sourceforge.net
Mon, 06 May 2002 09:05:03 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv877/lib

Modified Files:
      Tag: release21-maint
	libxreadlines.tex 
Log Message:
Add a note explaining the interaction between unbuffered input and
xreadlines.xreadlines().
This closes SF patch #552804.


Index: libxreadlines.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libxreadlines.tex,v
retrieving revision 1.2
retrieving revision 1.2.4.1
diff -C2 -d -r1.2 -r1.2.4.1
*** libxreadlines.tex	12 Jan 2001 22:57:32 -0000	1.2
--- libxreadlines.tex	6 May 2002 16:05:01 -0000	1.2.4.1
***************
*** 39,43 ****
    Return a new xreadlines object which will iterate over the contents
    of \var{fileobj}.  \var{fileobj} must have a \method{readlines()}
!   method that supports the \var{sizehint} parameter.
  \end{funcdesc}
  
--- 39,46 ----
    Return a new xreadlines object which will iterate over the contents
    of \var{fileobj}.  \var{fileobj} must have a \method{readlines()}
!   method that supports the \var{sizehint} parameter.  \strong{Note:}
!   Because the \method{readlines()} method buffers data, this
!   effectively ignores the effects of setting the file object as
!   unbuffered.
  \end{funcdesc}