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 | 5fa22fc088ac44c5652107c7c17cda01eaa84a28 (patch) | |
tree | f9190a64d589605debb6a08191a88a89c5e76dea /Include | |
parent | 73c95f194975a9a6226f3f6fd87352e7337a20dd (diff) | |
download | cpython-5fa22fc088ac44c5652107c7c17cda01eaa84a28.zip cpython-5fa22fc088ac44c5652107c7c17cda01eaa84a28.tar.gz cpython-5fa22fc088ac44c5652107c7c17cda01eaa84a28.tar.bz2 |
Added the const qualifier for char* argument of Py_EnterRecursiveCall().
Diffstat (limited to 'Include')
-rw-r--r-- | Include/ceval.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/ceval.h b/Include/ceval.h index 6811367..4937f2c 100644 --- a/Include/ceval.h +++ b/Include/ceval.h @@ -77,7 +77,7 @@ PyAPI_FUNC(int) Py_GetRecursionLimit(void); do{ if(_Py_MakeEndRecCheck(PyThreadState_GET()->recursion_depth)) \ PyThreadState_GET()->overflowed = 0; \ } while(0) -PyAPI_FUNC(int) _Py_CheckRecursiveCall(char *where); +PyAPI_FUNC(int) _Py_CheckRecursiveCall(const char *where); PyAPI_DATA(int) _Py_CheckRecursionLimit; #ifdef USE_STACKCHECK |