File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -71,8 +71,10 @@ static const _PyStackRef PyStackRef_NULL = { .index = 0 };
7171static const _PyStackRef PyStackRef_ERROR = { .index = (1 << Py_TAGGED_SHIFT ) };
7272
7373#define PyStackRef_None ((_PyStackRef){ .index = (2 << Py_TAGGED_SHIFT) } )
74- #define PyStackRef_False ((_PyStackRef){ .index = (3 << Py_TAGGED_SHIFT) })
75- #define PyStackRef_True ((_PyStackRef){ .index = (4 << Py_TAGGED_SHIFT) })
74+ #define _Py_STACKREF_FALSE_INDEX (3 << Py_TAGGED_SHIFT)
75+ #define _Py_STACKREF_TRUE_INDEX (4 << Py_TAGGED_SHIFT)
76+ #define PyStackRef_False ((_PyStackRef){ .index = _Py_STACKREF_FALSE_INDEX })
77+ #define PyStackRef_True ((_PyStackRef){ .index = _Py_STACKREF_TRUE_INDEX })
7678
7779#define INITIAL_STACKREF_INDEX (5 << Py_TAGGED_SHIFT)
7880
You can’t perform that action at this time.
0 commit comments