[Python-checkins] python/dist/src/Doc/lib libsocket.tex,1.84,1.85
davecole at users.sourceforge.net
davecole at users.sourceforge.net
Mon Aug 9 06:51:42 CEST 2004
Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20818/Doc/lib
Modified Files:
libsocket.tex
Log Message:
Patch #1003700: Add socketpair function to socket module.
Index: libsocket.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsocket.tex,v
retrieving revision 1.84
retrieving revision 1.85
diff -C2 -d -r1.84 -r1.85
*** libsocket.tex 28 Jun 2004 00:50:35 -0000 1.84
--- libsocket.tex 9 Aug 2004 04:51:40 -0000 1.85
***************
*** 304,307 ****
--- 304,315 ----
\end{funcdesc}
+ \begin{funcdesc}{socketpair}{\optional{family\optional{, type\optional{, proto}}}}
+ 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.3}
+ \end{funcdesc}
+
\begin{funcdesc}{fromfd}{fd, family, type\optional{, proto}}
Build a socket object from an existing file descriptor (an integer as
More information about the Python-checkins
mailing list