]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.14] [Docs] Add missing note about Required/NotRequired/ReadOnly in get_type_hints...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 20 Oct 2025 20:23:19 +0000 (22:23 +0200)
committerGitHub <noreply@github.com>
Mon, 20 Oct 2025 20:23:19 +0000 (13:23 -0700)
[Docs] Add missing note about Required/NotRequired/ReadOnly in get_type_hints() (GH-139565)
(cherry picked from commit a752f58d6b628ab4fe6e4263137ec4cc244ff390)

Co-authored-by: Sam Bull <git@sambull.org>
Doc/library/typing.rst

index b4364c371b2d7e73f1d386834fe66436a53b1d1f..862f765b148c73101a3032df2909681571d0c821 100644 (file)
@@ -3360,7 +3360,8 @@ Introspection helpers
      ``__annotations__`` dictionaries. Annotations on classes appearing
      earlier in the :term:`method resolution order` always take precedence over
      annotations on classes appearing later in the method resolution order.
-   * The function recursively replaces all occurrences of ``Annotated[T, ...]``
+   * The function recursively replaces all occurrences of
+     ``Annotated[T, ...]``, ``Required[T]``, ``NotRequired[T]``, and ``ReadOnly[T]``
      with ``T``, unless *include_extras* is set to ``True`` (see
      :class:`Annotated` for more information).