From 4631ebb43a2d4f1b4156d81dfbb3828dca7ff00b Mon Sep 17 00:00:00 2001 From: "Michael W. Hudson" Date: Thu, 16 Jun 2005 11:35:00 +0000 Subject: 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 :). --- Python/pystate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/pystate.c') 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 -- cgit v1.2.1