[Python-checkins] python/dist/src/Modules posixmodule.c, 2.330, 2.331

aimacintyre at users.sourceforge.net aimacintyre at users.sourceforge.net
Sat Dec 18 10:51:08 CET 2004


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

Modified Files:
	posixmodule.c 
Log Message:
fix unterminated comment

Index: posixmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/posixmodule.c,v
retrieving revision 2.330
retrieving revision 2.331
diff -u -d -r2.330 -r2.331
--- posixmodule.c	12 Dec 2004 08:30:51 -0000	2.330
+++ posixmodule.c	18 Dec 2004 09:51:05 -0000	2.331
@@ -3295,7 +3295,7 @@
 		return NULL;
 	}
 
-	/* setup the pipe
+	/* setup the pipe */
 	if ((rc = DosCreatePipe(&pipeh[0], &pipeh[1], pipesize)) != NO_ERROR) {
 		*err = rc;
 		return NULL;



More information about the Python-checkins mailing list