Make the indentation consistently use tabs instead of using spaces just

in one place.
This commit is contained in:
Fred Drake 2000-12-20 00:55:07 +00:00
parent 8fe2c12d49
commit e7e190ef97
1 changed files with 3 additions and 3 deletions

View File

@ -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;