Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
WTF typo
  • Loading branch information
stefanor committed Nov 17, 2025
commit a26fcc3381c81189d2bef84388d7d0fcd572aa7b
4 changes: 2 additions & 2 deletions Python/ceval.c
Original file line number Diff line number Diff line change
Expand Up @@ -471,9 +471,9 @@ _Py_InitializeRecursionLimits(PyThreadState *tstate)
# ifdef _Py_THREAD_SANITIZER
// Thread sanitizer crashes if we use a bit more than half the stack.
# if _Py_STACK_GROWS_DOWN
base += stacksize / 2;
base += stack_size / 2;
# else
top -= stacksize / 2;
top -= stack_size / 2;
# endif
# endif
# if _Py_STACK_GROWS_DOWN
Expand Down
Loading