Home
last modified time | relevance | path

Searched refs:Py_DEFAULT_RECURSION_LIMIT (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Python/
Dceval.c435 #ifndef Py_DEFAULT_RECURSION_LIMIT
436 #define Py_DEFAULT_RECURSION_LIMIT 1000 macro
439 int _Py_CheckRecursionLimit = Py_DEFAULT_RECURSION_LIMIT;
444 state->recursion_limit = Py_DEFAULT_RECURSION_LIMIT; in _PyEval_Initialize()
445 _Py_CheckRecursionLimit = Py_DEFAULT_RECURSION_LIMIT; in _PyEval_Initialize()
/external/python/cpython2/Python/
Dceval.c593 #ifndef Py_DEFAULT_RECURSION_LIMIT
594 #define Py_DEFAULT_RECURSION_LIMIT 1000 macro
596 static int recursion_limit = Py_DEFAULT_RECURSION_LIMIT;
597 int _Py_CheckRecursionLimit = Py_DEFAULT_RECURSION_LIMIT;