Cpython Release November 2025 New Jun 2026
While the major features debuted in October, November’s bugfix release solidifies them. Here is what is new and stable as of this release.
One of the most impactful changes for Python's static typing ecosystem is the full adoption of deferred evaluation of annotations. Previously, type hints were evaluated at runtime, which could lead to circular import issues and performance overhead. With this update, annotations are stored as strings and only evaluated when needed, eliminating the need for the from __future__ import annotations directive. This paves the way for more powerful and less fragile type checking in large codebases.
The updated interactive interpreter features comprehensive natively. Furthermore, the parser began emitting smarter error messages, including specialized warnings when developers mistakenly place a return statement inside a finally block, which traditionally masks exception propagation. Version Lifecycle and Ecosystem Re-alignment cpython release november 2025 new
Version 3.9.25 was the final security release; no further patches will be issued.
Python 3.14's internal interpreter improvements reduce overhead in common call paths and improve memory behavior, leading to lower latency and less CPU churn in web apps and APIs. Additionally, the multiple interpreters feature allows for better isolation of request handlers. While the major features debuted in October, November’s
Note: Python 3.14.0 has been superseded by Python 3.14.4. Release date: Oct. 7, 2025. Python.org What's new in Python 3.14 — Python 3.14.4 documentation
The November 2025 release of CPython is expected to bring a wide range of new features, improvements, and optimizations. Some of the most significant changes include: Previously, type hints were evaluated at runtime, which
The November 2025 release of CPython is a significant update that brings many new features, improvements, and optimizations. Some of the key highlights of this release include:
: Future goals for 3.15 include Free-Threaded JIT optimizations aiming for a 5% speedup.
: Forward references no longer require explicit from __future__ import annotations declarations.
With the rise of supply chain attacks, CPython 3.14.1 introduces three critical security enhancements: