summaryrefslogtreecommitdiff
path: root/Modules/fcntlmodule.c
diff options
context:
space:
mode:
authorHye-Shik Chang <hyeshik@gmail.com>2005-07-28 05:57:19 +0000
committerHye-Shik Chang <hyeshik@gmail.com>2005-07-28 05:57:19 +0000
commit7ce47cc2bf7d7b1642599e59814fc2301d0a2c9e (patch)
tree3823fe6daaa391428ffb5518f4d16f065d75c790 /Modules/fcntlmodule.c
parent0fb380df731be1768ced6fd7453f254eb88948b2 (diff)
downloadcpython-7ce47cc2bf7d7b1642599e59814fc2301d0a2c9e.tar.gz
Fix a typo. (found by Jong-uk Kim)
Diffstat (limited to 'Modules/fcntlmodule.c')
-rw-r--r--Modules/fcntlmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c
index eb5189ef41..624019dfa5 100644
--- a/Modules/fcntlmodule.c
+++ b/Modules/fcntlmodule.c
@@ -173,7 +173,7 @@ fcntl_ioctl(PyObject *self, PyObject *args)
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;
}