diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2014-11-07 17:51:37 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2014-11-07 17:51:37 (GMT) |
commit | ea07bd2f8121f85e789e7eba581f638a6b1bfa37 (patch) | |
tree | ed2de02fe1ab4db1d2d6a670aa91ce7e4fe42b9d | |
parent | d0c4ef175bae537041595bd20a1457b533a0360a (diff) | |
parent | b556399fb500136ee4b3c562a72af062527bd20a (diff) | |
download | cpython-ea07bd2f8121f85e789e7eba581f638a6b1bfa37.zip cpython-ea07bd2f8121f85e789e7eba581f638a6b1bfa37.tar.gz cpython-ea07bd2f8121f85e789e7eba581f638a6b1bfa37.tar.bz2 |
Issue #22808: Link to the correct time method in BaseEventLoop.call_at().
Patch by Mark Grandi.
-rw-r--r-- | Doc/library/asyncio-eventloop.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index ec88475..18d8738 100644 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -121,7 +121,8 @@ a different clock than :func:`time.time`. .. method:: BaseEventLoop.call_at(when, callback, *args) Arrange for the *callback* to be called at the given absolute timestamp - *when* (an int or float), using the same time reference as :meth:`time`. + *when* (an int or float), using the same time reference as + :meth:`BaseEventLoop.time`. This method's behavior is the same as :meth:`call_later`. |