>>121
Ok.
Global Interpreter Lock (GIL) can be a significant barrier to concurrency. Due to signaling with a CPU-bound thread, it can cause a significant slowdown, even on single processors. Reason for employing GIL in Python is to easy the integration of C/C++ libraries that usually are not thread-safe.