reinit the TLS before anything else (#130)

PyEval_ReInitThread can run arbitrary Python code, which really ought to have
the TLS initialized.
diff --git a/Parser/intrcheck.c b/Parser/intrcheck.c
index 1c888a5..5844a9a 100644
--- a/Parser/intrcheck.c
+++ b/Parser/intrcheck.c
@@ -172,7 +172,7 @@
 PyOS_AfterFork(void)
 {
 #ifdef WITH_THREAD
-    PyEval_ReInitThreads();
     PyThread_ReInitTLS();
+    PyEval_ReInitThreads();
 #endif
 }