]> granicus.if.org Git - python/commitdiff
for some reason, the lack of adherence to Python's C whitespace rules
authorMichael W. Hudson <mwh@python.net>
Mon, 2 Aug 2004 13:21:09 +0000 (13:21 +0000)
committerMichael W. Hudson <mwh@python.net>
Mon, 2 Aug 2004 13:21:09 +0000 (13:21 +0000)
must have annoyed me at some point.

Python/bltinmodule.c

index b76f3739fa6b351f7292e0f45e1bbab00ca7e9a9..8ff733c4d8e76d8863e6365b636387cadce9a3fe 100644 (file)
@@ -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) {