summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-02-18 08:37:43 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-02-18 08:37:43 (GMT)
commit8b21d91e35fae15ad120a952e84c1a38959b54e5 (patch)
tree9cf26231b6ae56d1f2dd434f9fa27104cb1ce392
parent329e4925700f68c75f8a35612b0a8eae137585d6 (diff)
downloadcpython-8b21d91e35fae15ad120a952e84c1a38959b54e5.zip
cpython-8b21d91e35fae15ad120a952e84c1a38959b54e5.tar.gz
cpython-8b21d91e35fae15ad120a952e84c1a38959b54e5.tar.bz2
Issue #20493: Document that asyncio should not exceed one day
-rw-r--r--Doc/library/asyncio-eventloop.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index 7760fcb..b2c4802 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)