diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index b4364c371b2d7e..862f765b148c73 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -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).