mirror of
https://github.com/python/cpython.git
synced 2025-12-11 11:31:05 +00:00
Make the indentation consistently use tabs instead of using spaces just
in one place.
This commit is contained in:
parent
8fe2c12d49
commit
e7e190ef97
1 changed files with 3 additions and 3 deletions
|
|
@ -660,9 +660,9 @@ get_line(PyFileObject *f, int n)
|
||||||
n1 = getline(&buf, &size, fp);
|
n1 = getline(&buf, &size, fp);
|
||||||
Py_END_ALLOW_THREADS
|
Py_END_ALLOW_THREADS
|
||||||
if (n1 == -1) {
|
if (n1 == -1) {
|
||||||
if (buf){
|
if (buf){
|
||||||
free(buf);
|
free(buf);
|
||||||
}
|
}
|
||||||
clearerr(fp);
|
clearerr(fp);
|
||||||
if (PyErr_CheckSignals()) {
|
if (PyErr_CheckSignals()) {
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue