[Python-checkins] cpython (3.4): Issue #22808: Link to the correct time method in BaseEventLoop.call_at().

berker.peksag python-checkins at python.org
Fri Nov 7 18:51:31 CET 2014


https://hg.python.org/cpython/rev/8b1d8fcb494b
changeset:   93431:8b1d8fcb494b
branch:      3.4
parent:      93427:ad89a652b4ed
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Fri Nov 07 19:51:07 2014 +0200
summary:
  Issue #22808: Link to the correct time method in BaseEventLoop.call_at().

Patch by Mark Grandi.

files:
  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
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -121,7 +121,8 @@
 .. 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`.
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list