must have annoyed me at some point.
if (PyFile_WriteString(" ", fout) != 0)
return NULL;
}
- if (PyFile_Check (fin) && PyFile_Check (fout)
+ if (PyFile_Check(fin) && PyFile_Check(fout)
&& isatty(fileno(PyFile_AsFile(fin)))
&& isatty(fileno(PyFile_AsFile(fout)))) {
PyObject *po;
po = NULL;
prompt = "";
}
- s = PyOS_Readline(PyFile_AsFile (fin), PyFile_AsFile (fout),
+ s = PyOS_Readline(PyFile_AsFile(fin), PyFile_AsFile(fout),
prompt);
Py_XDECREF(po);
if (s == NULL) {