Skip to content

Commit 299c0d3

Browse files
committed
properly indent code
1 parent 8aa5556 commit 299c0d3

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

Python/sysmodule.c

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ _PySys_GetRequiredAttr(PyObject *name)
9595
#ifndef ABIFLAGS
9696
if (_PyUnicode_EqualToASCIIString(name, "abiflags")) {
9797
if (PyErr_WarnEx(PyExc_DeprecationWarning,
98-
"sys.abiflags will be set to a meaningful value "
99-
"on all platforms in Python 3.16 instead of absent",
100-
/*stack_level=*/1) < 0) {
98+
"sys.abiflags will be set to a meaningful value "
99+
"on all platforms in Python 3.16 instead of absent",
100+
/*stack_level=*/1) < 0) {
101101
return NULL;
102102
}
103103
}
@@ -121,9 +121,9 @@ _PySys_GetRequiredAttrString(const char *name)
121121
#ifndef ABIFLAGS
122122
if (strcmp(name, "abiflags") == 0) {
123123
if (PyErr_WarnEx(PyExc_DeprecationWarning,
124-
"sys.abiflags will be set to a meaningful value "
125-
"on all platforms in Python 3.16 instead of absent",
126-
/*stack_level=*/1) < 0) {
124+
"sys.abiflags will be set to a meaningful value "
125+
"on all platforms in Python 3.16 instead of absent",
126+
/*stack_level=*/1) < 0) {
127127
return NULL;
128128
}
129129
}
@@ -153,9 +153,9 @@ _PySys_GetOptionalAttr(PyObject *name, PyObject **value)
153153
#ifndef ABIFLAGS
154154
if (ret == 0 && _PyUnicode_EqualToASCIIString(name, "abiflags")) {
155155
if (PyErr_WarnEx(PyExc_DeprecationWarning,
156-
"sys.abiflags will be set to a meaningful value "
157-
"on all platforms in Python 3.16 instead of absent",
158-
/*stack_level=*/1) < 0) {
156+
"sys.abiflags will be set to a meaningful value "
157+
"on all platforms in Python 3.16 instead of absent",
158+
/*stack_level=*/1) < 0) {
159159
return -1;
160160
}
161161
}
@@ -176,9 +176,9 @@ _PySys_GetOptionalAttrString(const char *name, PyObject **value)
176176
#ifndef ABIFLAGS
177177
if (ret == 0 && strcmp(name, "abiflags") == 0) {
178178
if (PyErr_WarnEx(PyExc_DeprecationWarning,
179-
"sys.abiflags will be set to a meaningful value "
180-
"on all platforms in Python 3.16 instead of absent",
181-
/*stack_level=*/1) < 0) {
179+
"sys.abiflags will be set to a meaningful value "
180+
"on all platforms in Python 3.16 instead of absent",
181+
/*stack_level=*/1) < 0) {
182182
return -1;
183183
}
184184
}
@@ -207,9 +207,9 @@ PySys_GetObject(const char *name)
207207
#ifndef ABIFLAGS
208208
if (ret == 0 && strcmp(name, "abiflags") == 0) {
209209
if (PyErr_WarnEx(PyExc_DeprecationWarning,
210-
"sys.abiflags will be set to a meaningful value "
211-
"on all platforms in Python 3.16 instead of absent",
212-
/*stack_level=*/1) < 0) {
210+
"sys.abiflags will be set to a meaningful value "
211+
"on all platforms in Python 3.16 instead of absent",
212+
/*stack_level=*/1) < 0) {
213213
return NULL;
214214
}
215215
}

0 commit comments

Comments
 (0)