Python Articles, Tutorials & News

Python PEP 744 – JIT Compilation

Earlier this year, an experimental “just-in-time” compiler was merged into CPython’s main development branch. While recent CPython releases have included other substantial internal changes, this addition represents a particularly significant departure fro…

Read more »

Locking Mechanisms in Python Scripts

Today, I wanted to create a basic locking mechanism in Python to prevent certain commands/functions from running concurrently. I have an script that runs inside of a CI/CD pipeline but it can also be triggered manually. The problem is that certain command…

Read more »