8000 [3.12] gh-109860: Use a New Thread State When Switching Interpreters, When Necessary (gh-110245) by ericsnowcurrently · Pull Request #110709 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.12] gh-109860: Use a New Thread State When Switching Interpreters, When Necessary (gh-110245) #110709

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Set Py_BUILD_CORE_MODULE for _xxinterpchannelsmodule.
  • Loading branch information
ericsnowcurrently committed Oct 12, 2023
commit 49f99ca376ad0859f00e886d1b901785414192fc
5 changes: 5 additions & 0 deletions Modules/_xxinterpchannelsmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@
/* interpreters module */
/* low-level access to interpreter primitives */

#ifndef Py_BUILD_CORE_BUILTIN
# define Py_BUILD_CORE_MODULE 1
#endif

#include "Python.h"
#include "interpreteridobject.h"
#include "pycore_pystate.h" // _PyCrossInterpreterData_ReleaseAndRawFree()


/*
Expand Down
0