diff options
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 24f1dc2..7413cfe 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3250,9 +3250,7 @@ Return true if the file descriptor 'fd' is an open file descriptor\n\ connected to a terminal."; static PyObject * -posix_isatty(self, args) - PyObject *self; - PyObject *args; +posix_isatty(PyObject *self, PyObject *args) { int fd; if (!PyArg_ParseTuple(args, "i:isatty", &fd)) |