diff options
author | Hye-Shik Chang <hyeshik@gmail.com> | 2005-07-28 05:57:19 (GMT) |
---|---|---|
committer | Hye-Shik Chang <hyeshik@gmail.com> | 2005-07-28 05:57:19 (GMT) |
commit | 97bb8ad3949262d8d1a703ad8d2e514c1c85b433 (patch) | |
tree | fbef14ac33049e3b6c3f4a59567b75c2521a2ca9 /Modules | |
parent | 8137bea4ca369dfcd763ea51c678319a9d1da874 (diff) | |
download | cpython-97bb8ad3949262d8d1a703ad8d2e514c1c85b433.zip cpython-97bb8ad3949262d8d1a703ad8d2e514c1c85b433.tar.gz cpython-97bb8ad3949262d8d1a703ad8d2e514c1c85b433.tar.bz2 |
Fix a typo. (found by Jong-uk Kim)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/fcntlmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c index eb5189e..624019d 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; } |