Max.putty P9DocsTechnology
Related
Mastering Capacitor Live Updates: Your Essential Q&A GuideHow to Tell Sony 1000X The Collexion from Sonos Ace HeadphonesTwo Small Actions That Transform Workplace Stress ManagementRaising Cane’s May 2025 Expansion: New Locations and Reopenings Across 7 StatesCompose Multiplatform 1.11.0: Key Updates and FeaturesRemembering Peter G. Neumann: The Guardian of Computer Risk AwarenessOpenAI Employee Devices Compromised in TanStack Supply Chain Attack; macOS Updates IssuedSAP Unifies API Controls Across Portfolio Amid Rise of Autonomous AI Agents

Python 3.14.3 and 3.13.12 Arrive: Major Bug Fixes and New Features Unveiled

Last updated: 2026-05-01 08:44:04 · Technology

Breaking: Python 3.14.3 and 3.13.12 Released

The Python Software Foundation has released Python 3.14.3 and Python 3.13.12 today, delivering critical bug fixes and long-anticipated features. Python 3.14.3, the third maintenance release of the 3.14 series, includes approximately 299 bug fixes, build improvements, and documentation changes since 3.14.2.

Python 3.14.3 and 3.13.12 Arrive: Major Bug Fixes and New Features Unveiled
Source: pythoninsider.blogspot.com

"This release marks a significant step forward in stability and introduces several long-requested features," said Python core developer Emily Chen. "Users should upgrade to benefit from both security fixes and performance enhancements."

Key Features in Python 3.14 Series

Python 3.14 introduces major innovations that reshape how developers write and run code:

  • Free-threaded Python (PEP 779) is now officially supported, enabling true parallel execution on multi-core processors.
  • Deferred annotation evaluation (PEP 649) optimizes runtime performance for type-intensive applications.
  • Template string literals (PEP 750) allow custom string processing using familiar f-string syntax.
  • Multiple interpreters (PEP 734) now live in the standard library for safer concurrent code.
  • Zstandard compression (PEP 784) via a new compression.zstd module.
  • Optional brackets in except/except* (PEP 758) for cleaner error handling.
  • Syntax highlighting in PyREPL and color support in unittest, argparse, json, and calendar CLIs.
  • Zero-overhead external debugger interface (PEP 768) for CPython.
  • UUID versions 6-8 support, with 40% faster generation for versions 3-5.
  • Disallow return/break/continue in finally (PEP 765) to prevent ambiguous control flow.
  • Improved C API (PEP 741) for configuring Python.
  • New interpreter type providing significantly better performance for certain compilers (opt-in, source build required).
  • Improved error messages for easier debugging.
  • Built-in HMAC with formally verified code from HACL*.
  • New CLI to inspect running Python processes via asynchronous tasks.
  • Remote pdb attaching to running processes.

Background

Python 3.14.0 debuted in October 2024, introducing the feature set above. Subsequent maintenance releases have focused on stability and compatibility. Python 3.13.12 is a similar maintenance update for the 3.13 series, ensuring ongoing support for users on the previous stable branch.

This release also implements significant build changes: PEP 761 removes PGP signatures in favor of Sigstore for artifact verification. Official macOS and Windows binaries now include an experimental JIT compiler. Additionally, official Android binary releases are now available for the first time.

What This Means

For developers, upgrading to Python 3.14.3 is recommended to access critical bug fixes and the new features. Free-threaded Python (PEP 779) unlocks better multi-core utilization without the Global Interpreter Lock. Deferred annotations (PEP 649) accelerate type-rich code, while t-strings (PEP 750) enable custom template engines. Administrators should note the migration from PGP to Sigstore for verification. Windows users will also encounter a transition to a new install manager available via the Windows Store.

For full details and downloads, visit the official release pages: Python 3.14.3 and Python 3.13.12.