Skip to content

Commit b85c8b8

Browse files
committed
Mention Py_EnterRecursiveCall()
1 parent 8290679 commit b85c8b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/c-api/init.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1362,7 +1362,7 @@ All of the following functions must be called after :c:func:`Py_Initialize`.
13621362
13631363
CPython implements :ref:`recursion control <recursion>` for C code by raising
13641364
:py:exc:`RecursionError` when it notices that the machine execution stack is close
1365-
to overflow.
1365+
to overflow. See for example the :c:func:`Py_EnterRecursiveCall` function.
13661366
For this, it needs to know the location of the current thread's stack, which it
13671367
normally gets from the operating system.
13681368
When the stack is changed, for example using context switching techniques like the

0 commit comments

Comments
 (0)