[Python-checkins] python/dist/src/Modules fcntlmodule.c,2.44,2.45

perky@users.sourceforge.net perky at users.sourceforge.net
Thu Jul 28 07:57:22 CEST 2005


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

Modified Files:
	fcntlmodule.c 
Log Message:
Fix a typo. (found by Jong-uk Kim)


Index: fcntlmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/fcntlmodule.c,v
retrieving revision 2.44
retrieving revision 2.45
diff -u -d -r2.44 -r2.45
--- fcntlmodule.c	27 Jul 2005 20:24:30 -0000	2.44
+++ fcntlmodule.c	28 Jul 2005 05:57:19 -0000	2.45
@@ -173,7 +173,7 @@
 	arg = 0;
 	if (!PyArg_ParseTuple(args,
 	     "O&I|i;ioctl requires a file or file descriptor,"
-	     " an integer and optionally a integer or buffer argument",
+	     " an integer and optionally an integer or buffer argument",
 			      conv_descriptor, &fd, &code, &arg)) {
 	  return NULL;
 	}



More information about the Python-checkins mailing list