Skip to content

Commit ff095e1

Browse files
authored
Update includes in call.c (GH-93786)
1 parent 0ba8027 commit ff095e1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Objects/call.c

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
#include "Python.h"
22
#include "pycore_call.h" // _PyObject_CallNoArgsTstate()
3-
#include "pycore_ceval.h" // _PyEval_EvalFrame()
4-
#include "pycore_object.h" // _PyObject_GC_TRACK()
3+
#include "pycore_ceval.h" // _Py_EnterRecursiveCallTstate()
4+
#include "pycore_object.h" // _PyCFunctionWithKeywords_TrampolineCall()
55
#include "pycore_pyerrors.h" // _PyErr_Occurred()
66
#include "pycore_pystate.h" // _PyThreadState_GET()
77
#include "pycore_tuple.h" // _PyTuple_ITEMS()
8-
#include "frameobject.h" // _PyFrame_New_NoTrack()
98

109

1110
static PyObject *const *

0 commit comments

Comments
 (0)