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 fa245df commit a415a18Copy full SHA for a415a18
Python/ceval.c
@@ -523,13 +523,6 @@ _Py_InitializeRecursionLimits(PyThreadState *tstate)
523
_PyThreadStateImpl *ts = (_PyThreadStateImpl *)tstate;
524
ts->c_stack_init_base = base;
525
ts->c_stack_init_top = top;
526
-
527
- // Test the stack pointer
528
-#if !defined(NDEBUG) && !defined(__wasi__)
529
- uintptr_t here_addr = _Py_get_machine_stack_pointer();
530
- assert(ts->c_stack_soft_limit < here_addr);
531
- assert(here_addr < ts->c_stack_top);
532
-#endif
533
}
534
535
0 commit comments