@@ -39,7 +39,7 @@ Bugfixes and changed features:
39
39
- Backport CPython PR [ #124795 ] ( https://github.com/python/cpython/pull/124795 ) :
40
40
fix ` TypeAliasType ` not raising an error on non-tuple inputs for ` type_params ` .
41
41
Patch by [ Daraan] ( https://github.com/Daraan ) .
42
- - Fix that lists and ... could not be used for parameter expressions for ` TypeAliasType `
42
+ - Fix that lists and ` ... ` could not be used for parameter expressions for ` TypeAliasType `
43
43
instances before Python 3.11.
44
44
Patch by [ Daraan] ( https://github.com/Daraan ) .
45
45
- Fix error on Python 3.10 when using ` typing.Concatenate ` and
@@ -48,9 +48,9 @@ Bugfixes and changed features:
48
48
to reflect Python 3.13+ behavior: A value assigned to ` __total__ ` in the class body of a
49
49
` TypedDict ` will be overwritten by the ` total ` argument of the ` TypedDict ` constructor.
50
50
Patch by [ Daraan] ( https://github.com/Daraan ) , backporting a CPython PR by Jelle Zijlstra.
51
- - Fix for Python 3.11 that now ` isinstance(typing_extensions.Unpack[...], TypeVar) `
52
- evaluates to ` False ` , however still ` True ` for < 3.11.
53
- Patch by [ Daraan] ( https://github.com/Daraan )
51
+ - ` isinstance(typing_extensions.Unpack[...], TypeVar) ` now evaluates to ` False ` on Python 3.11
52
+ and newer, but remains ` True ` on versions before 3.11.
53
+ Patch by [ Daraan] ( https://github.com/Daraan ) .
54
54
55
55
# Release 4.12.2 (June 7, 2024)
56
56
0 commit comments