[Python-checkins] python/dist/src/Doc/lib liburllib.tex,1.51,1.52

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Thu Mar 25 11:51:15 EST 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10007

Modified Files:
	liburllib.tex 
Log Message:
Note that reading from a socket may not always return all of the
remaining content of a stream when expected to do so.
Closes SF bug #725265.  Should be backported to Python 2.3.x.


Index: liburllib.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/liburllib.tex,v
retrieving revision 1.51
retrieving revision 1.52
diff -C2 -d -r1.51 -r1.52
*** liburllib.tex	27 Aug 2003 15:11:40 -0000	1.51
--- liburllib.tex	25 Mar 2004 16:51:12 -0000	1.52
***************
*** 30,33 ****
--- 30,37 ----
  \method{close()}, \method{info()} and \method{geturl()}.  It also has
  proper support for the iterator protocol.
+ One caveat: the \method{read()} method, if the size argument is
+ omitted or negative, may not read until the end of the data stream;
+ there is no good way to determine that the entire stream from a socket
+ has been read in the general case.
  
  Except for the \method{info()} and \method{geturl()} methods,




More information about the Python-checkins mailing list