From: Berker Peksag Date: Fri, 7 Nov 2014 17:51:07 +0000 (+0200) Subject: Issue #22808: Link to the correct time method in BaseEventLoop.call_at(). X-Git-Tag: v3.4.3rc1~344 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b556399fb500136ee4b3c562a72af062527bd20a;p=thirdparty%2FPython%2Fcpython.git Issue #22808: Link to the correct time method in BaseEventLoop.call_at(). Patch by Mark Grandi. --- diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index ec884759ce72..18d873881bc1 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`.