Python Release November 2025 Extra Quality Jun 2026
A dedicated profiling package ( PEP 799 ) was added to improve performance monitoring.
: A major milestone (PEP 703) that allows running Python without the Global Interpreter Lock (GIL) , enabling true multi-core parallelism through an optional build variant [6, 18, 31]. python release november 2025
With the "No-GIL" build now the standard, developers are reporting a in CPU-bound, multi-threaded applications right out of the box. This doesn't just make Python faster; it fundamentally changes how architecture is designed. Data processing pipelines that once required complex multiprocessing setups can now run efficiently in a single process with shared memory. A dedicated profiling package ( PEP 799 )