Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Doc/library/typing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3340,7 +3340,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]`` and ``NotRequired[T]``
with ``T``, unless *include_extras* is set to ``True`` (see
:class:`Annotated` for more information).

Expand Down
Loading