[Python-checkins] cpython: Issue #20493: Document that asyncio should not exceed one day

victor.stinner python-checkins at python.org
Tue Feb 18 09:37:54 CET 2014


http://hg.python.org/cpython/rev/79e5bb0d9b8e
changeset:   89248:79e5bb0d9b8e
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Tue Feb 18 09:37:43 2014 +0100
summary:
  Issue #20493: Document that asyncio should not exceed one day

files:
  Doc/library/asyncio-eventloop.rst |  4 ++++
  1 files changed, 4 insertions(+), 0 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
@@ -157,6 +157,10 @@
 implementation; ideally it is a monotonic clock.  This will generally be
 a different clock than :func:`time.time`.
 
+.. note::
+
+   Timeouts (relative *delay* or absolute *when*) should not exceed one day.
+
 
 .. method:: BaseEventLoop.call_later(delay, callback, *args)
 

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


More information about the Python-checkins mailing list