[Python-checkins] python/dist/src/Doc/lib libsocket.tex,1.63,1.64

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Thu, 06 Jun 2002 15:24:12 -0700


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

Modified Files:
	libsocket.tex 
Log Message:
Add version info, and fix another typo and wording spotted by /F.  I think this is what he meant. :-)

Index: libsocket.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsocket.tex,v
retrieving revision 1.63
retrieving revision 1.64
diff -C2 -d -r1.63 -r1.64
*** libsocket.tex	6 Jun 2002 22:19:20 -0000	1.63
--- libsocket.tex	6 Jun 2002 22:24:10 -0000	1.64
***************
*** 521,524 ****
--- 521,525 ----
  elapsed before the operation has completed. Setting a timeout of
  \code{None} disables timeouts on socket operations.
+ \versionadded{2.3}
  \end{methoddesc}
  
***************
*** 527,535 ****
  operations.  A timeout of \code{None} indicates that timeouts on
  socket operations are disabled.
  \end{methoddesc}
  
  Some notes on the interaction between socket blocking and timeouts:
! socket blocking mode takes precedence over timeouts. If a socket if
! set to non-blocking mode, then timeouts set on sockets are not used.
  The timeout value associated with the socket can still be set using
  \method{settimeout()} and its value retrieved using
--- 528,537 ----
  operations.  A timeout of \code{None} indicates that timeouts on
  socket operations are disabled.
+ \versionadded{2.3}
  \end{methoddesc}
  
  Some notes on the interaction between socket blocking and timeouts:
! socket blocking mode takes precedence over timeouts. If a socket is
! set to non-blocking mode, then timeouts are not used.
  The timeout value associated with the socket can still be set using
  \method{settimeout()} and its value retrieved using