We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 988cb27 commit e1702fdCopy full SHA for e1702fd
Python/ceval_macros.h
@@ -394,7 +394,7 @@ do { \
394
/* +1 because vectorcall might use -1 to write self */ \
395
_PyThreadStateImpl *_tstate = (_PyThreadStateImpl *)tstate; \
396
PyObject **NAME##_temp = _tstate->stackref_scratch; \
397
- PyObject **NAME = _PyObjectArray_FromStackRefArray(ARGS, ARG_COUNT,
+ PyObject **NAME = _PyObjectArray_FromStackRefArray(ARGS, ARG_COUNT, NAME##_temp + 1);
398
399
#define STACKREFS_TO_PYOBJECTS_CLEANUP(NAME) \
400
/* +1 because we +1 previously */ \
0 commit comments