diff options
author | Victor Stinner <vstinner@python.org> | 2020-03-13 09:19:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-13 09:19:38 (GMT) |
commit | 224481a8c988fca12f488544edd2f01c0af2a91d (patch) | |
tree | 88e6b0085773ec3591216f0f41e8ae4dcb06a5b9 /Objects/abstract.c | |
parent | 0b72b23fb0c130279f65f3bcd23521acf4a98c88 (diff) | |
download | cpython-224481a8c988fca12f488544edd2f01c0af2a91d.zip cpython-224481a8c988fca12f488544edd2f01c0af2a91d.tar.gz cpython-224481a8c988fca12f488544edd2f01c0af2a91d.tar.bz2 |
bpo-39947: Move Py_EnterRecursiveCall() to internal C API (GH-18972)
Move the static inline function flavor of Py_EnterRecursiveCall() and
Py_LeaveRecursiveCall() to the internal C API: they access
PyThreadState attributes. The limited C API provides regular
functions which hide implementation details.
Diffstat (limited to 'Objects/abstract.c')
-rw-r--r-- | Objects/abstract.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c index f9be422..02e4ad7 100644 --- a/Objects/abstract.c +++ b/Objects/abstract.c @@ -1,6 +1,7 @@ /* Abstract Object Interface (many thanks to Jim Fulton) */ #include "Python.h" +#include "pycore_ceval.h" // _Py_EnterRecursiveCall() #include "pycore_pyerrors.h" #include "pycore_pystate.h" #include <ctype.h> |