GH-85447: Clarify docs about awaiting future multiple times (GH-97738)

(cherry picked from commit 9151bbefea)

Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2022-10-02 15:27:17 -07:00 committed by Pablo Galindo
parent 10818aa833
commit c8bdf339d7
No known key found for this signature in database
GPG key ID: FFE87404168BD847

View file

@ -85,7 +85,8 @@ Future Object
Future is an :term:`awaitable` object. Coroutines can await on Future is an :term:`awaitable` object. Coroutines can await on
Future objects until they either have a result or an exception Future objects until they either have a result or an exception
set, or until they are cancelled. set, or until they are cancelled. A Future can be awaited multiple
times and the result is same.
Typically Futures are used to enable low-level Typically Futures are used to enable low-level
callback-based code (e.g. in protocols implemented using asyncio callback-based code (e.g. in protocols implemented using asyncio