GIL - Global Interpreter Lock
- Solves the problem introduced by having reference count.
- Not going away any time soon.
- GIL wiki
- GIL realpython
- CPython and PyPy have it.
- Jython and IronPython don't have it.
- See PEP 554 - Multiple Interpreters in the Stdlib for C extensions.