diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2025-05-12 16:10:56 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-12 22:10:56 +0000 |
commit | 8cf4947b0f2d37f7ffeca136ac4f99cb4cb70e5c (patch) | |
tree | 556a2a34633f18e7271467d73854ad344831f33d /Python/crossinterp.c | |
parent | 121ed71f4e395948d313249b2ad33e1e21581f8a (diff) | |
download | cpython-8cf4947b0f2d37f7ffeca136ac4f99cb4cb70e5c.tar.gz cpython-8cf4947b0f2d37f7ffeca136ac4f99cb4cb70e5c.zip |
gh-132775: Add _PyFunction_GetXIData() (gh-133481)
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 7d7e6551c3f..725d6009f84 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() |