mirror of https://github.com/python/cpython
Make the indentation consistently use tabs instead of using spaces just
in one place.
This commit is contained in:
parent
8fe2c12d49
commit
e7e190ef97
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue