diff options
author | Victor Stinner <vstinner@python.org> | 2023-07-22 19:31:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-22 19:31:55 (GMT) |
commit | 22422e9d1a50b4970bc6957a88569618d579c47f (patch) | |
tree | 63af9e1bf2bc7d2fe10a6c3cd981d866a38eb2fd /Modules/_xxinterpchannelsmodule.c | |
parent | f8b7fe2f2647813ae8249675a80e59c117d30fe1 (diff) | |
download | cpython-22422e9d1a50b4970bc6957a88569618d579c47f.zip cpython-22422e9d1a50b4970bc6957a88569618d579c47f.tar.gz cpython-22422e9d1a50b4970bc6957a88569618d579c47f.tar.bz2 |
gh-106320: Remove private _PyInterpreterID C API (#107053)
Move the private _PyInterpreterID C API to the internal C API: add a
new pycore_interp_id.h header file.
Remove Include/interpreteridobject.h and
Include/cpython/interpreteridobject.h header files.
Diffstat (limited to 'Modules/_xxinterpchannelsmodule.c')
-rw-r--r-- | Modules/_xxinterpchannelsmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_xxinterpchannelsmodule.c b/Modules/_xxinterpchannelsmodule.c index 8247255..bdffdba 100644 --- a/Modules/_xxinterpchannelsmodule.c +++ b/Modules/_xxinterpchannelsmodule.c @@ -6,8 +6,8 @@ #endif #include "Python.h" -#include "interpreteridobject.h" #include "pycore_atexit.h" // _Py_AtExit() +#include "pycore_interp_id.h" // _PyInterpreterState_GetIDObject() /* |