Python 3.13.1 Released November 2025 [hot] Jun 2026

Elena scrolled past the usual boilerplate—bug fixes, security patches, documentation updates—until her eyes snagged on the bullet points that made her coffee go cold.

Elena leaned back, her chair creaking. The subinterpreters were the real story. For years, Python had been a single-threaded soul trapped in a multi-core world. You could spawn processes, but they were heavy. You could use asyncio , but it was cooperative. True parallelism—without the GIL’s chaperone—had always been the dream deferred. python 3.13.1 released november 2025

A major step toward removing the Global Interpreter Lock (GIL) , allowing threads to run concurrently on multi-core processors. For years, Python had been a single-threaded soul

It was the itch of a new point release.

For three days, the discourse was a war room. Some demanded that the no_gil flag be reverted to experimental. Others insisted on a hotfix that would re-enable a lightweight GIL only when loading untrusted C extensions. For three days

Introduces a Just-In-Time (JIT) compiler to improve performance for certain types of code execution.