File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -104,20 +104,21 @@ WIN32 is still required for the locale module.
104
104
105
105
/* Defined in debug builds */
106
106
#ifdef _DEBUG
107
- # define Py_DEBUG
107
+ # define Py_DEBUG
108
108
#endif
109
109
110
110
#ifdef Py_GIL_DISABLED
111
- # define _ABIFLAGS_FREETHREADED "t"
111
+ # define _ABIFLAGS_FREETHREADED "t"
112
112
#else
113
- # define _ABIFLAGS_FREETHREADED ""
113
+ # define _ABIFLAGS_FREETHREADED ""
114
114
#endif
115
115
#ifdef Py_DEBUG
116
- # define _ABIFLAGS_DEBUG "d"
116
+ # define _ABIFLAGS_DEBUG "d"
117
117
#else
118
- # define _ABIFLAGS_DEBUG ""
118
+ # define _ABIFLAGS_DEBUG ""
119
119
#endif
120
- #define ABIFLAGS ("" _Py_STRINGIZE(_ABIFLAGS_FREETHREADED) _Py_STRINGIZE(_ABIFLAGS_DEBUG))
120
+ /* Set value for `sys.abiflags` */
121
+ #define ABIFLAGS ("" _ABIFLAGS_FREETHREADED _ABIFLAGS_DEBUG)
121
122
122
123
/* Compiler specific defines */
123
124
You can’t perform that action at this time.
0 commit comments