From 5e4af2a3e90d78fdf6a4cc42e0472576b1f2b975 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 22 Jul 2023 17:04:34 +0200 Subject: gh-106320: Move private _PySet API to the internal API (#107041) * Add pycore_setobject.h header file. * Move the following API to the internal C API: * _PySet_Dummy * _PySet_NextEntry() * _PySet_Update() --- Python/executor.c | 1 + 1 file changed, 1 insertion(+) (limited to 'Python/executor.c') diff --git a/Python/executor.c b/Python/executor.c index 17322526a7b..57525df202d 100644 --- a/Python/executor.c +++ b/Python/executor.c @@ -11,6 +11,7 @@ #include "pycore_opcode_utils.h" #include "pycore_pyerrors.h" #include "pycore_range.h" +#include "pycore_setobject.h" // _PySet_Update() #include "pycore_sliceobject.h" #include "pycore_uops.h" -- cgit v1.2.3