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 42ebbcd commit da82cbbCopy full SHA for da82cbb
1 file changed
Include/internal/pycore_pystate.h
@@ -325,7 +325,6 @@ _Py_RecursionLimit_GetMargin(PyThreadState *tstate)
325
_PyThreadStateImpl *_tstate = (_PyThreadStateImpl *)tstate;
326
assert(_tstate->c_stack_hard_limit != 0);
327
intptr_t here_addr = _Py_get_machine_stack_pointer();
328
-
329
return Py_ARITHMETIC_RIGHT_SHIFT(intptr_t, here_addr - (intptr_t)_tstate->c_stack_soft_limit, PYOS_STACK_MARGIN_SHIFT);
330
}
331
0 commit comments