Commit 52db519f authored by Michael W. Hudson's avatar Michael W. Hudson

for some reason, the lack of adherence to Python's C whitespace rules

must have annoyed me at some point.
parent d91fcbe2
......@@ -1588,7 +1588,7 @@ builtin_raw_input(PyObject *self, PyObject *args)
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;
......@@ -1607,7 +1607,7 @@ builtin_raw_input(PyObject *self, PyObject *args)
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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment