diff options
author | Victor Stinner <vstinner@python.org> | 2021-10-14 19:53:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-14 19:53:04 (GMT) |
commit | 3cc56c828d2d8f8659ea49447234bf0d2b87cd64 (patch) | |
tree | 7f204eb39062037d3575d407fda18825e314dd7e /Python/context.c | |
parent | 39aa98346d5dd8ac591a7cafb467af21c53f1e5d (diff) | |
download | cpython-3cc56c828d2d8f8659ea49447234bf0d2b87cd64.zip cpython-3cc56c828d2d8f8659ea49447234bf0d2b87cd64.tar.gz cpython-3cc56c828d2d8f8659ea49447234bf0d2b87cd64.tar.bz2 |
bpo-45439: Move _PyObject_VectorcallTstate() to pycore_call.h (GH-28893)
* Move _PyObject_VectorcallTstate() and _PyObject_FastCallTstate() to
pycore_call.h (internal C API).
* Convert PyObject_CallOneArg(), PyObject_Vectorcall(),
_PyObject_FastCall() and PyVectorcall_Function() static inline
functions to regular functions.
* Add _PyVectorcall_FunctionInline() static inline function.
* PyObject_Vectorcall(), _PyObject_FastCall(), and
PyObject_CallOneArg() now call _PyThreadState_GET() rather
than PyThreadState_Get().
Diffstat (limited to 'Python/context.c')
-rw-r--r-- | Python/context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/context.c b/Python/context.c index ad47992..d78f7f9 100644 --- a/Python/context.c +++ b/Python/context.c @@ -1,5 +1,5 @@ #include "Python.h" - +#include "pycore_call.h" // _PyObject_VectorcallTstate() #include "pycore_context.h" #include "pycore_gc.h" // _PyObject_GC_MAY_BE_TRACKED() #include "pycore_hamt.h" |