News and Updates

New release Python 3.13.0

Python 3.13 is the latest stable release of the Python programming language, with a mix of new features and optimizations to the language, the implementation and the standard library. The biggest changes include a new interactive interpreter, experimental support for running in a free-threaded mode (PEP 703), and a Just-In-Time compiler (PEP 744).

Error messages continue to improve, with tracebacks now highlighted in color by default. The locals() builtin now has defined semantics for changing the returned mapping, and type parameters now support default values.

The library changes contain removal of deprecated APIs and modules, as well as the usual improvements in user-friendliness and correctness. Several legacy standard library modules have now been removed following their deprecation in Python 3.11 (PEP 594).

For full details refer to the documentation here.

As usual we recommend all users to upgrade to the latest version when available.

Back to Get Started