Skip to content

Commit 4148d8c

Browse files
committed
Fix code indentation
1 parent ba015a3 commit 4148d8c

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

Python/sysmodule.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@ _PySys_GetRequiredAttr(PyObject *name)
103103
PyObject *value;
104104
if (PyDict_GetItemRef(sysdict, name, &value) == 0) {
105105
#ifndef ABIFLAGS
106-
if (_PyUnicode_EqualToASCIIString(name, "abiflags")) {
107-
if (WarnIncomingSysAbiflagsChange() < 0) {
108-
return NULL;
109-
}
106+
if (_PyUnicode_EqualToASCIIString(name, "abiflags")) {
107+
if (WarnIncomingSysAbiflagsChange() < 0) {
108+
return NULL;
110109
}
110+
}
111111
#endif
112112
PyErr_Format(PyExc_RuntimeError, "lost sys.%U", name);
113113
}
@@ -126,11 +126,11 @@ _PySys_GetRequiredAttrString(const char *name)
126126
PyObject *value;
127127
if (PyDict_GetItemStringRef(sysdict, name, &value) == 0) {
128128
#ifndef ABIFLAGS
129-
if (strcmp(name, "abiflags") == 0) {
130-
if (WarnIncomingSysAbiflagsChange() < 0) {
131-
return NULL;
132-
}
129+
if (strcmp(name, "abiflags") == 0) {
130+
if (WarnIncomingSysAbiflagsChange() < 0) {
131+
return NULL;
133132
}
133+
}
134134
#endif
135135
PyErr_Format(PyExc_RuntimeError, "lost sys.%s", name);
136136
}

0 commit comments

Comments
 (0)