]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix a typo. (found by Jong-uk Kim)
authorHye-Shik Chang <hyeshik@gmail.com>
Thu, 28 Jul 2005 05:57:19 +0000 (05:57 +0000)
committerHye-Shik Chang <hyeshik@gmail.com>
Thu, 28 Jul 2005 05:57:19 +0000 (05:57 +0000)
Modules/fcntlmodule.c

index eb5189ef41306961aa4b916fc8324a27b88afe41..624019dfa52a2c22bf6ce0a9130d74789e1cb1e5 100644 (file)
@@ -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;
        }