[Python-checkins] python/dist/src/Doc/lib libsocket.tex,1.68,1.69

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Thu, 20 Mar 2003 09:58:16 -0800


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

Modified Files:
	libsocket.tex 
Log Message:
add descriptions of {get,set}defaulttimeout.


Index: libsocket.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsocket.tex,v
retrieving revision 1.68
retrieving revision 1.69
diff -C2 -d -r1.68 -r1.69
*** libsocket.tex	13 Jun 2002 15:07:43 -0000	1.68
--- libsocket.tex	20 Mar 2003 17:58:12 -0000	1.69
***************
*** 350,353 ****
--- 350,367 ----
  \end{funcdesc}
  
+ \begin{funcdesc}{getdefaulttimeout}{}
+ Return the default timeout in floating seconds for new socket objects.
+ A value of \code{None} indicates that new socket objects have no timeout.
+ When the socket module is first imported, the default is \code{None}.
+ \versionadded{2.3}
+ \end{funcdesc}
+ 
+ \begin{funcdesc}{setdefaulttimeout}{timeout}
+ Set the default timeout in floating seconds for new socket objects.
+ A value of \code{None} indicates that new socket objects have no timeout.
+ When the socket module is first imported, the default is \code{None}.
+ \versionadded{2.3}
+ \end{funcdesc}
+ 
  \begin{datadesc}{SocketType}
  This is a Python type object that represents the socket object type.