Issue #22808: Link to the correct time method in BaseEventLoop.call_at().

Patch by Mark Grandi.
This commit is contained in:
Berker Peksag 2014-11-07 19:51:07 +02:00
parent 519114df42
commit b556399fb5
1 changed files with 2 additions and 1 deletions

View File

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