Issue #20493: Document that asyncio should not exceed one day

This commit is contained in:
Victor Stinner 2014-02-18 09:37:43 +01:00
parent 86516d9225
commit fd9d374ae9
1 changed files with 4 additions and 0 deletions

View 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)