]> granicus.if.org Git - python/commitdiff
Issue #20493: Document that asyncio should not exceed one day
authorVictor Stinner <victor.stinner@gmail.com>
Tue, 18 Feb 2014 08:37:43 +0000 (09:37 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Tue, 18 Feb 2014 08:37:43 +0000 (09:37 +0100)
Doc/library/asyncio-eventloop.rst

index 7760fcb168e6d376bbdb0b569c1249636107a359..b2c48024b54052de24787bb07754b720c92d40e6 100644 (file)
@@ -157,6 +157,10 @@ Which clock is used depends on the (platform-specific) event loop
 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)