[Python-checkins] python/dist/src/Modules posixmodule.c, 2.300.8.11, 2.300.8.12

aimacintyre at users.sourceforge.net aimacintyre at users.sourceforge.net
Sat Dec 18 10:46:21 CET 2004


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

Modified Files:
      Tag: release23-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.300.8.11
retrieving revision 2.300.8.12
diff -u -d -r2.300.8.11 -r2.300.8.12
--- posixmodule.c	12 Dec 2004 08:37:08 -0000	2.300.8.11
+++ posixmodule.c	18 Dec 2004 09:46:18 -0000	2.300.8.12
@@ -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