[Python-checkins] Update includes in call.c (GH-93786)

markshannon webhook-mailer at python.org
Wed Jun 15 08:24:46 EDT 2022


https://github.com/python/cpython/commit/ff095e13dfdea64de5c1ad21021ae9b5ca2631f8
commit: ff095e13dfdea64de5c1ad21021ae9b5ca2631f8
branch: main
author: Pamela Fox <pamela.fox at gmail.com>
committer: markshannon <mark at hotpy.org>
date: 2022-06-15T13:24:12+01:00
summary:

Update includes in call.c (GH-93786)

files:
M Objects/call.c

diff --git a/Objects/call.c b/Objects/call.c
index 3b5259b3383f4..ed168c9c4796e 100644
--- a/Objects/call.c
+++ b/Objects/call.c
@@ -1,11 +1,10 @@
 #include "Python.h"
 #include "pycore_call.h"          // _PyObject_CallNoArgsTstate()
-#include "pycore_ceval.h"         // _PyEval_EvalFrame()
-#include "pycore_object.h"        // _PyObject_GC_TRACK()
+#include "pycore_ceval.h"         // _Py_EnterRecursiveCallTstate()
+#include "pycore_object.h"        // _PyCFunctionWithKeywords_TrampolineCall()
 #include "pycore_pyerrors.h"      // _PyErr_Occurred()
 #include "pycore_pystate.h"       // _PyThreadState_GET()
 #include "pycore_tuple.h"         // _PyTuple_ITEMS()
-#include "frameobject.h"          // _PyFrame_New_NoTrack()
 
 
 static PyObject *const *



More information about the Python-checkins mailing list