diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-02-18 09:37:43 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-02-18 09:37:43 +0100 |
commit | 8b21d91e35fae15ad120a952e84c1a38959b54e5 (patch) | |
tree | 9cf26231b6ae56d1f2dd434f9fa27104cb1ce392 | |
parent | 329e4925700f68c75f8a35612b0a8eae137585d6 (diff) | |
download | cpython-git-8b21d91e35fae15ad120a952e84c1a38959b54e5.tar.gz |
Issue #20493: Document that asyncio should not exceed one day
-rw-r--r-- | 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 index 7760fcb168..b2c48024b5 100644 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -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) |