From: Michael W. Hudson Date: Thu, 16 Jun 2005 11:35:00 +0000 (+0000) Subject: You can have more than one thread state for a thread if they X-Git-Tag: v2.5a0~1688 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=867f2d45cd9906a323c7eff7cf5d43c128038ad6;p=python You can have more than one thread state for a thread if they correspond to different interpreters (I hope, please revert if this is wrong :). --- diff --git a/Python/pystate.c b/Python/pystate.c index abca8ddfdf..e2cf7c564d 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -289,7 +289,7 @@ PyThreadState_Swap(PyThreadState *new) #if defined(Py_DEBUG) && defined(WITH_THREAD) if (new) { PyThreadState *check = PyGILState_GetThisThreadState(); - if (check && check != new) + if (check && check->interp == new->interp && check != new) Py_FatalError("Invalid thread state for this thread"); } #endif