Python does not support parallelism via threads because of the Global Interpreter Lock or GIL. As such, many Python developers HATE the GIL. This refrain is then repeated and repeated by newer developers, leaving behind the nuance of the limitations of the GIL and leading to statements like “Python does not support concurrency“, which is […]
Published on February 07, 2023 10:00