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 0d3a7fb commit 5418bf1Copy full SHA for 5418bf1
1 file changed
Include/internal/pycore_ceval.h
@@ -211,7 +211,7 @@ extern void _PyEval_DeactivateOpCache(void);
211
static inline int _Py_ReachedRecursionLimit(PyThreadState *tstate) {
212
uintptr_t here_addr = _Py_get_machine_stack_pointer();
213
_PyThreadStateImpl *_tstate = (_PyThreadStateImpl *)tstate;
214
- // Possible overflow if stack pointer is beyond the soft limit.
+ // Possible overflow if stack pointer is beyond the soft limit.
215
// _Py_CheckRecursiveCall will check for corner cases and
216
// report an error if there is an overflow.
217
#if _Py_STACK_GROWS_DOWN
0 commit comments