gh-131417: Mention asyncio Future and Task in docs for generic classes list (#131422)

Mention asyncio Future and Task in docs for generic classes list
This commit is contained in:
Andrew Svetlov 2025-03-19 10:05:23 +01:00 committed by GitHub
parent 267c06d6a8
commit 61b4b2c57c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View file

@ -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`

View file

@ -0,0 +1,2 @@
Mention :class:`asyncio.Future` and :class:`asyncio.Task` in generic classes
list.