Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
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
Next Next commit
fix build for mypyc
  • Loading branch information
kumaraditya303 committed Oct 26, 2025
commit c82449dd1e599064c1c517b8a6a7d3596120cfec
2 changes: 1 addition & 1 deletion Include/internal/pycore_pystate.h
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ static inline PyInterpreterState* _PyInterpreterState_GET(void) {
PyThreadState *tstate = _PyThreadState_GET();
_Py_EnsureTstateNotNULL(tstate);
#endif
#if !defined(Py_BUILD_CORE_MODULE)
#if defined(HAVE_THREAD_LOCAL) && !defined(Py_BUILD_CORE_MODULE)
Comment thread
kumaraditya303 marked this conversation as resolved.
Outdated
return _Py_tss_interp;
#else
return _PyThreadState_GET()->interp;
Expand Down
Loading