Python, like perl 5, was not designed from the ground up to be thread safe. Threads were grafted on after the fact, so the global interpreter lock is used to maintain mutual exclusion to where only one thread is executing code at a given time in the bowels of the interpreter. Individual Python threads are cooperatively multitasked by the interpreter itself by cycling the lock. Grabbing the lock yourself is needed when you are talking to python from C when other python threads are active to 'opt in' to this protocol and make sure that nothing unsafe happens.