diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2017-09-06 04:43:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-06 04:43:08 (GMT) |
commit | 05351c1bd8b70d1878527762174cdaaba3572395 (patch) | |
tree | e97ef4ba0ae7ffe5bd2c8969199616bffbbc4d6f /Include/ceval.h | |
parent | 833860615bedfd2484ac0623d6f01ff0578ba09f (diff) | |
download | cpython-05351c1bd8b70d1878527762174cdaaba3572395.zip cpython-05351c1bd8b70d1878527762174cdaaba3572395.tar.gz cpython-05351c1bd8b70d1878527762174cdaaba3572395.tar.bz2 |
Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)
Windows buildbots started failing due to include-related errors.
Diffstat (limited to 'Include/ceval.h')
-rw-r--r-- | Include/ceval.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/Include/ceval.h b/Include/ceval.h index 7cbbf7c..b2d57cb 100644 --- a/Include/ceval.h +++ b/Include/ceval.h @@ -93,12 +93,7 @@ PyAPI_FUNC(int) Py_GetRecursionLimit(void); PyThreadState_GET()->overflowed = 0; \ } while(0) PyAPI_FUNC(int) _Py_CheckRecursiveCall(const char *where); -#ifdef Py_BUILD_CORE -#define _Py_CheckRecursionLimit _PyRuntime.ceval.check_recursion_limit -#else -PyAPI_FUNC(int) _PyEval_CheckRecursionLimit(void); -#define _Py_CheckRecursionLimit _PyEval_CheckRecursionLimit() -#endif +PyAPI_DATA(int) _Py_CheckRecursionLimit; #ifdef USE_STACKCHECK /* With USE_STACKCHECK, we artificially decrement the recursion limit in order |