diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2025-05-12 22:37:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-12 22:37:55 (GMT) |
commit | 3467656b18d188511df33d05be918f6d1f6ceae5 (patch) | |
tree | bc41ff2308a7d8bc17a6799bf16da2bb0ca57115 /Python/crossinterp.c | |
parent | c1aa5f82d9442f5a15676e962aba3501951c542e (diff) | |
download | cpython-3467656b18d188511df33d05be918f6d1f6ceae5.zip cpython-3467656b18d188511df33d05be918f6d1f6ceae5.tar.gz cpython-3467656b18d188511df33d05be918f6d1f6ceae5.tar.bz2 |
[3.14] gh-132775: Add _PyFunction_GetXIData() (gh-133955)
(cherry picked from commit 8cf4947b0f, AKA gh-133481)
Co-authored-by: Eric Snow <ericsnowcurrently@gmail.com>
Diffstat (limited to 'Python/crossinterp.c')
-rw-r--r-- | Python/crossinterp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/crossinterp.c b/Python/crossinterp.c index 7d7e655..725d600 100644 --- a/Python/crossinterp.c +++ b/Python/crossinterp.c @@ -10,6 +10,7 @@ #include "pycore_initconfig.h" // _PyStatus_OK() #include "pycore_namespace.h" // _PyNamespace_New() #include "pycore_pythonrun.h" // _Py_SourceAsString() +#include "pycore_setobject.h" // _PySet_NextEntry() #include "pycore_typeobject.h" // _PyStaticType_InitBuiltin() |