Thanks to visit codestin.com Credit goes to github.com
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 81cc54b commit a26fcc3Copy full SHA for a26fcc3
1 file changed
Python/ceval.c
@@ -471,9 +471,9 @@ _Py_InitializeRecursionLimits(PyThreadState *tstate)
471
# ifdef _Py_THREAD_SANITIZER
472
// Thread sanitizer crashes if we use a bit more than half the stack.
473
# if _Py_STACK_GROWS_DOWN
474
- base += stacksize / 2;
+ base += stack_size / 2;
475
# else
476
- top -= stacksize / 2;
+ top -= stack_size / 2;
477
# endif
478
479
0 commit comments