[Python-checkins] python/dist/src/Modules socketmodule.c, 1.303, 1.304

davecole at users.sourceforge.net davecole at users.sourceforge.net
Thu Aug 26 02:51:19 CEST 2004


Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11692/Modules

Modified Files:
	socketmodule.c 
Log Message:
Patch #1015012.  Improve markup and punctuation in libsocket.tex


Index: socketmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/socketmodule.c,v
retrieving revision 1.303
retrieving revision 1.304
diff -u -d -r1.303 -r1.304
--- socketmodule.c	25 Aug 2004 06:24:58 -0000	1.303
+++ socketmodule.c	26 Aug 2004 00:51:16 -0000	1.304
@@ -2981,7 +2981,7 @@
 #ifdef HAVE_SOCKETPAIR
 /* Create a pair of sockets using the socketpair() function.
    Arguments as for socket() except the default family is AF_UNIX if
-   defined for the platform, otherwise the default is AF_INET. */
+   defined on the platform; otherwise, the default is AF_INET. */
 
 /*ARGSUSED*/
 static PyObject *
@@ -3029,7 +3029,7 @@
 Create a pair of socket objects from the sockets returned by the platform\n\
 socketpair() function.\n\
 The arguments are the same as for socket() except the default family is\n\
-AF_UNIX if defined for the platform, otherwise the default is AF_INET.");
+AF_UNIX if defined on the platform; otherwise, the default is AF_INET.");
 
 #endif /* HAVE_SOCKETPAIR */
 



More information about the Python-checkins mailing list