ANSIfy the just-checked-in isatty() wrapper.

This commit is contained in:
Thomas Wouters 2000-07-19 14:45:40 +00:00
parent 1517d842b6
commit 616607a987
1 changed files with 1 additions and 3 deletions

View File

@ -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))