[Python-checkins] python/dist/src/Modules posixmodule.c, 2.329.2.1, 2.329.2.2

aimacintyre at users.sourceforge.net aimacintyre at users.sourceforge.net
Sat Dec 18 10:48:43 CET 2004


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

Modified Files:
      Tag: release24-maint
	posixmodule.c 
Log Message:
fix unterminated comment

Index: posixmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/posixmodule.c,v
retrieving revision 2.329.2.1
retrieving revision 2.329.2.2
diff -u -d -r2.329.2.1 -r2.329.2.2
--- posixmodule.c	12 Dec 2004 08:34:33 -0000	2.329.2.1
+++ posixmodule.c	18 Dec 2004 09:48:40 -0000	2.329.2.2
@@ -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