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

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


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

Modified Files:
      Tag: release22-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.22.1
diff -C2 -d -r1.2 -r1.2.22.1
*** libxreadlines.tex	12 Jan 2001 22:57:32 -0000	1.2
--- libxreadlines.tex	6 May 2002 16:03:00 -0000	1.2.22.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,45 ----
    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.  \note{Because
!   the \method{readlines()} method buffers data, this effectively
!   ignores the effects of setting the file object as unbuffered.}
  \end{funcdesc}