ceval.c: dict of local mapping is now a tuple
compile.c: lists and dictionary in code objects become tuples
import.c: bump MAGIC
thread*.[ch]: added thread_ident() function
version.c: added '++' to version number and bumped date
diff --git a/Python/thread_cthread.h b/Python/thread_cthread.h
index c56bf0d..bf9a024 100644
--- a/Python/thread_cthread.h
+++ b/Python/thread_cthread.h
@@ -48,6 +48,12 @@
 	return success < 0 ? 0 : 1;
 }
 
+long get_thread_ident _P0()
+{
+	if (!initialized)
+		init_thread();
+}
+
 static void do_exit_thread _P1(no_cleanup, int no_cleanup)
 {
 	dprintf(("exit_thread called\n"));