Python¶
Upgrade Table¶
A quick lookup table listing the main features (or at least the features that interest me) of each Python version.
-
Python 3.13 (2024-10-07)
@warnings.deprecateddecorator.typing.TypeIsfor type narrowing.
-
Python 3.12 (2023-10-02)
TypedDictto annotate**kwargs@typing.override()decorator.- Type Parameter Syntax
- Improved f-strings syntax support.
-
Python 3.11 (2022-10-24)
-
Python 3.10 (2021-10-04)
- Structural Pattern Matching, aka
match ... case. - Union types as
X | Y(instead ofUnion[X, Y]).
- Structural Pattern Matching, aka