diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 2807177b7ce78b..50bad396933a23 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -5244,6 +5244,8 @@ list is non-exhaustive. * :class:`set` * :class:`frozenset` * :class:`type` +* :class:`asyncio.Future` +* :class:`asyncio.Task` * :class:`collections.deque` * :class:`collections.defaultdict` * :class:`collections.OrderedDict` diff --git a/Misc/NEWS.d/next/Documentation/2025-03-18-15-15-16.gh-issue-131417.lQg5aH.rst b/Misc/NEWS.d/next/Documentation/2025-03-18-15-15-16.gh-issue-131417.lQg5aH.rst new file mode 100644 index 00000000000000..d3c80e41826186 --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2025-03-18-15-15-16.gh-issue-131417.lQg5aH.rst @@ -0,0 +1,2 @@ +Mention :class:`asyncio.Future` and :class:`asyncio.Task` in generic classes +list.