diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-12-03 18:17:25 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-12-03 18:17:25 (GMT) |
commit | 99c2ab4b837288c0b29a1777988b07a77171c544 (patch) | |
tree | db1360486bdf22f174f60c472f2c4d5dc74c111b /Doc/library/asyncio-eventloop.rst | |
parent | cf6f72e329838d774dbd9cbb795c7d213ebc55bc (diff) | |
download | cpython-99c2ab4b837288c0b29a1777988b07a77171c544.zip cpython-99c2ab4b837288c0b29a1777988b07a77171c544.tar.gz cpython-99c2ab4b837288c0b29a1777988b07a77171c544.tar.bz2 |
asyncio doc: oh, asyncio module has its own Future class
Improve also wait() documentation: mention that the first parameter is a
sequence
Diffstat (limited to 'Doc/library/asyncio-eventloop.rst')
-rw-r--r-- | Doc/library/asyncio-eventloop.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index 8a53e39..c5dbb3b 100644 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -61,7 +61,7 @@ Run an event loop .. method:: BaseEventLoop.run_until_complete(future) - Run until the :class:`~concurrent.futures.Future` is done. + Run until the :class:`Future` is done. If the argument is a coroutine, it is wrapped in a :class:`Task`. |