mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
Added the const qualifier for char* argument of Py_EnterRecursiveCall().
This commit is contained in:
parent
73c95f1949
commit
5fa22fc088
3 changed files with 3 additions and 3 deletions
|
@ -621,7 +621,7 @@ level, both in the core and in extension modules. They are needed if the
|
|||
recursive code does not necessarily invoke Python code (which tracks its
|
||||
recursion depth automatically).
|
||||
|
||||
.. c:function:: int Py_EnterRecursiveCall(char *where)
|
||||
.. c:function:: int Py_EnterRecursiveCall(const char *where)
|
||||
|
||||
Marks a point where a recursive C-level call is about to be performed.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue