Fix a typo. (found by Jong-uk Kim)

This commit is contained in:
Hye-Shik Chang 2005-07-28 05:57:19 +00:00
parent 8137bea4ca
commit 97bb8ad394
1 changed files with 1 additions and 1 deletions

View 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;
}