[Python-checkins] python/dist/src/Doc/lib libsocket.tex,1.86,1.87

davecole at users.sourceforge.net davecole at users.sourceforge.net
Mon Aug 23 07:16:25 CEST 2004


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

Modified Files:
	libsocket.tex 
Log Message:
Updated the socketpair() docstring and documentation to explain that the
default famility is AF_UNIX if defined for the platform, otherwise the
default is AF_INET.


Index: libsocket.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsocket.tex,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -d -r1.86 -r1.87
--- libsocket.tex	9 Aug 2004 05:59:09 -0000	1.86
+++ libsocket.tex	23 Aug 2004 05:16:22 -0000	1.87
@@ -307,8 +307,9 @@
 Build a pair of connected socket objects using the given address
 family, socket type and protocol number.  Address family, socket type
 and protocol number are as for the \function{socket()} function above.
-Availability: \UNIX.
-\versionadded{2.4}
+The default family is AF_UNIX if defined for the platform, otherwise
+the default is AF_INET.
+Availability: \UNIX.  \versionadded{2.4}
 \end{funcdesc}
 
 \begin{funcdesc}{fromfd}{fd, family, type\optional{, proto}}



More information about the Python-checkins mailing list