for some reason, the lack of adherence to Python's C whitespace rules
must have annoyed me at some point.
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index b76f373..8ff733c 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -1588,7 +1588,7 @@
 		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 @@
 			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) {