#1683 prevent forking from interfering in threading storage
This should prevent some test_multiprocessing failures
diff --git a/Parser/intrcheck.c b/Parser/intrcheck.c
index e0f3252..1356191 100644
--- a/Parser/intrcheck.c
+++ b/Parser/intrcheck.c
@@ -2,6 +2,7 @@
 /* Check for interrupts */
 
 #include "Python.h"
+#include "pythread.h"
 
 #ifdef QUICKWIN
 
@@ -172,5 +173,6 @@
 {
 #ifdef WITH_THREAD
 	PyEval_ReInitThreads();
+	PyThread_ReInitTLS();
 #endif
 }