(released October 7, 2025) and a major transition for older versions. Python documentation
In November 2025, the CPython ecosystem was defined by the recent launch of and the early alpha stages of Python 3.15 . This period marked a major shift toward better multicore utilization and modernized developer ergonomics. Python 3.14: The "Pi Day" Milestone cpython release november 2025 new
: Template string literals were introduced for safer, controlled string interpolation. (released October 7, 2025) and a major transition
# Multi-threaded scaling without process isolation overhead import threading from concurrent.futures import ThreadPoolExecutor def compute_heavy_task(data_chunk): # This now scales truly in parallel on multi-core CPUs in 3.14 free-threaded builds return sum(i * i for i in data_chunk) chunks = [range(1000000) for _ in range(4)] with ThreadPoolExecutor(max_workers=4) as executor: results = list(executor.map(compute_heavy_task, chunks)) Use code with caution. Python 3
: Introduction of a new tail-calling interpreter, which initially aimed for a significant speedup but settled into a geometric mean improvement of 3-5% .
The interactive REPL now features improved syntax highlighting, making it easier to read and debug code on the fly.