File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments