[Python-checkins] python/dist/src/Doc/lib libstdtypes.tex,1.80.6.19,1.80.6.20

niemeyer@users.sourceforge.net niemeyer@users.sourceforge.net
Mon, 03 Mar 2003 16:50:55 -0800


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

Modified Files:
      Tag: release22-maint
	libstdtypes.tex 
Log Message:
Backported fix to [521782] unreliable file.read() error handling.


Index: libstdtypes.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstdtypes.tex,v
retrieving revision 1.80.6.19
retrieving revision 1.80.6.20
diff -C2 -d -r1.80.6.19 -r1.80.6.20
*** libstdtypes.tex	17 Feb 2003 18:59:54 -0000	1.80.6.19
--- libstdtypes.tex	4 Mar 2003 00:50:20 -0000	1.80.6.20
***************
*** 1164,1168 ****
    an \EOF{} is hit.)  Note that this method may call the underlying
    C function \cfunction{fread()} more than once in an effort to
!   acquire as close to \var{size} bytes as possible.
  \end{methoddesc}
  
--- 1164,1170 ----
    an \EOF{} is hit.)  Note that this method may call the underlying
    C function \cfunction{fread()} more than once in an effort to
!   acquire as close to \var{size} bytes as possible. Also note that
!   when in non-blocking mode, less data than what was requested may
!   be returned, even if no \var{size} parameter was given.
  \end{methoddesc}