MooJoo wrote: > I've read that the Python interpreter is not thread-safe Just to counter this misconception: the Python interpreter *is* thread-safe. It's just that it won't run in parallel with itself on multiple CPUs in a single process. Regards, Martin