Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e7e190e

Browse files
committed
Make the indentation consistently use tabs instead of using spaces just
in one place.
1 parent 8fe2c12 commit e7e190e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Objects/fileobject.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -660,9 +660,9 @@ get_line(PyFileObject *f, int n)
660660
n1 = getline(&buf, &size, fp);
661661
Py_END_ALLOW_THREADS
662662
if (n1 == -1) {
663-
if (buf){
664-
free(buf);
665-
}
663+
if (buf){
664+
free(buf);
665+
}
666666
clearerr(fp);
667667
if (PyErr_CheckSignals()) {
668668
return NULL;

0 commit comments

Comments
 (0)