Global Interpreter Lock

This lesson discusses the global interpreter lock also known as GIL and its effects.

We'll cover the following...

Global Interpreter Lock

In one of the previous sections we discussed I/O and CPU bound programs. In this lesson, we'll understand why only I/O bound Python programs can leverage multithreading to speed up execution time. But first, a quick refresher ...