Commit 41f0a98f authored by Guido van Rossum's avatar Guido van Rossum

Looks like I didn't test this interactively. The EventHook() code was

broken; it asked for the current thread state when there was none.
Fixed by using the saved event_tstate.
parent 69ef7d62
......@@ -1899,9 +1899,6 @@ static PyThreadState *event_tstate = NULL;
static int
EventHook()
{
#if defined(WITH_THREAD) || defined(MS_WINDOWS)
PyThreadState *tstate = PyThreadState_Get();
#endif
#ifndef MS_WINDOWS
FHANDLE tfile;
#endif
......@@ -1923,7 +1920,7 @@ EventHook()
#if defined(WITH_THREAD) || defined(MS_WINDOWS)
Py_BEGIN_ALLOW_THREADS
acquire_lock(tcl_lock, 1);
tcl_tstate = tstate;
tcl_tstate = event_tstate;
result = Tcl_DoOneEvent(TCL_DONT_WAIT);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment