blog| tenthousandmeters.com
tag «Python behind the scenes» | tenthousandmeters.com
Have you ever wondered what python does when you run one of your programs? $ python script.py This article opens a series which seeks to answer...| tenthousandmeters.com
Mark functions as async. Call them with await. All of a sudden, your program becomes asynchronous – it can do useful things while it waits for...| tenthousandmeters.com
As you probably know, the GIL stands for the Global Interpreter Lock, and its job is to make the CPython interpreter thread-safe. The GIL allows...| tenthousandmeters.com