From: Fred Drake Date: Wed, 20 Dec 2000 00:55:07 +0000 (+0000) Subject: Make the indentation consistently use tabs instead of using spaces just X-Git-Tag: v2.1a1~512 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e7e190ef97d43c9d04e151e1ca916bbd173db972;p=python Make the indentation consistently use tabs instead of using spaces just in one place. --- diff --git a/Objects/fileobject.c b/Objects/fileobject.c index 96d3830d8b..ea8fe9dccf 100644 --- a/Objects/fileobject.c +++ b/Objects/fileobject.c @@ -660,9 +660,9 @@ get_line(PyFileObject *f, int n) n1 = getline(&buf, &size, fp); Py_END_ALLOW_THREADS if (n1 == -1) { - if (buf){ - free(buf); - } + if (buf){ + free(buf); + } clearerr(fp); if (PyErr_CheckSignals()) { return NULL;