diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2023-06-02 14:10:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-02 14:10:45 (GMT) |
commit | 44bb03f856c30f709bb983f9830eafe914a742aa (patch) | |
tree | 59221bf329af04954f5a7669a87c8c82a9add670 /Python/ceval.c | |
parent | 41de54378d54f7ffc38f07db4219e80f48c4249e (diff) | |
download | cpython-44bb03f856c30f709bb983f9830eafe914a742aa.zip cpython-44bb03f856c30f709bb983f9830eafe914a742aa.tar.gz cpython-44bb03f856c30f709bb983f9830eafe914a742aa.tar.bz2 |
gh-105214: Use named constants for MAKE_FUNCTION oparg (#105215)
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 46e2f02..e81b6be 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -14,6 +14,7 @@ #include "pycore_object.h" // _PyObject_GC_TRACK() #include "pycore_moduleobject.h" // PyModuleObject #include "pycore_opcode.h" // EXTRA_CASES +#include "pycore_opcode_utils.h" // MAKE_FUNCTION_* #include "pycore_pyerrors.h" // _PyErr_GetRaisedException() #include "pycore_pystate.h" // _PyInterpreterState_GET() #include "pycore_range.h" // _PyRangeIterObject |