@@ -982,7 +982,7 @@ A new flag has been added, :data:`~sys.flags.context_aware_warnings`. This
982982flag defaults to true for the free-threaded build and false for the GIL-enabled
983983build. If the flag is true then the :class: `warnings.catch_warnings ` context
984984manager uses a context variable for warning filters. This makes the context
985- manager behave predicably when used with multiple threads or asynchronous
985+ manager behave predictably when used with multiple threads or asynchronous
986986tasks.
987987
988988A new flag has been added, :data: `~sys.flags.thread_inherit_context `. This flag
16481648 :exc: `BlockingIOError ` if the operation cannot immediately return bytes.
16491649 (Contributed by Giovanni Siragusa in :gh: `109523 `.)
16501650
1651- * Add protocols :class: `io.Reader ` and :class: `io.Writer ` as a simpler
1651+ * Add protocols :class: `io.Reader ` and :class: `io.Writer ` as simpler
16521652 alternatives to the pseudo-protocols :class: `typing.IO `,
16531653 :class: `typing.TextIO `, and :class: `typing.BinaryIO `.
16541654 (Contributed by Sebastian Rittau in :gh: `127648 `.)
@@ -2148,6 +2148,8 @@ typing
21482148
21492149 (Contributed by Jelle Zijlstra in :gh: `105499 `.)
21502150
2151+ * :class: `typing.TypeAliasType ` now supports star unpacking.
2152+
21512153
21522154unicodedata
21532155-----------
@@ -2731,7 +2733,6 @@ typing
27312733* Remove :class: `!typing.ByteString `. It had previously raised a
27322734 :exc: `DeprecationWarning ` since Python 3.12.
27332735
2734- * :class: `typing.TypeAliasType ` now supports star unpacking.
27352736
27362737urllib
27372738------
0 commit comments