File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ static inline PyInterpreterState* _PyInterpreterState_GET(void) {
209209 PyThreadState * tstate = _PyThreadState_GET ();
210210 _Py_EnsureTstateNotNULL (tstate );
211211#endif
212- #if defined( HAVE_THREAD_LOCAL ) && !defined(Py_BUILD_CORE_MODULE )
212+ #if !defined(Py_BUILD_CORE_MODULE )
213213 return _Py_tss_interp ;
214214#else
215215 return _PyThreadState_GET ()-> interp ;
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ _Py_thread_local PyThreadState *_Py_tss_tstate = NULL;
7878 also known as a "gilstate." */
7979_Py_thread_local PyThreadState * _Py_tss_gilstate = NULL ;
8080
81- /* The interpreter of the attached thread state */
81+ /* The interpreter of the attached thread state. */
8282_Py_thread_local PyInterpreterState * _Py_tss_interp = NULL ;
8383
8484static inline PyThreadState *
You can’t perform that action at this time.
0 commit comments