diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-21 13:26:28 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-21 13:26:28 (GMT) |
commit | 1670af6c33beb4851934b481ed8dfde3baf139a2 (patch) | |
tree | a6c8f716eb4f6fd5e52976a87d41c5b980126810 /Doc/c-api | |
parent | 18d69e0edc4c7497f92126dc105444f5ebeb39d6 (diff) | |
download | cpython-1670af6c33beb4851934b481ed8dfde3baf139a2.zip cpython-1670af6c33beb4851934b481ed8dfde3baf139a2.tar.gz cpython-1670af6c33beb4851934b481ed8dfde3baf139a2.tar.bz2 |
Added the const qualifier for char* argument of Py_EnterRecursiveCall().
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/exceptions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/exceptions.rst b/Doc/c-api/exceptions.rst index 6f8f243..65249e1 100644 --- a/Doc/c-api/exceptions.rst +++ b/Doc/c-api/exceptions.rst @@ -493,7 +493,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. |