diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-21 13:27:09 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-21 13:27:09 (GMT) |
commit | 289dd19124734b973e6f43f13328dfeca979d685 (patch) | |
tree | 2dce516f35371ce82894c316769b203b5efd02cd /Python/ceval.c | |
parent | ccfdf0923ace5bd64b7667516f18ef8fcce3c4db (diff) | |
parent | 5fa22fc088ac44c5652107c7c17cda01eaa84a28 (diff) | |
download | cpython-289dd19124734b973e6f43f13328dfeca979d685.zip cpython-289dd19124734b973e6f43f13328dfeca979d685.tar.gz cpython-289dd19124734b973e6f43f13328dfeca979d685.tar.bz2 |
Added the const qualifier for char* argument of Py_EnterRecursiveCall().
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 641f9db..e127a73 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -712,7 +712,7 @@ Py_SetRecursionLimit(int new_limit) to guarantee that _Py_CheckRecursiveCall() is regularly called. Without USE_STACKCHECK, there is no need for this. */ int -_Py_CheckRecursiveCall(char *where) +_Py_CheckRecursiveCall(const char *where) { PyThreadState *tstate = PyThreadState_GET(); |