Skip to content

Commit 7e954e7

Browse files
nacchtmiss-islington
authored andcommitted
bpo-36651: Fixed Asyncio Event Loop documentation inconsistency (GH-12866)
# [bpo-36651](https://bugs.python.org/issue36651): Fixed Asyncio Event Loop documentation inconsistency In the documentation for the call_later and the call_at methods there is a note which says that the delay cannot be longer than a day, but both methods have a note saying that this limitation was removed in Python 3.8 Here I fixed this issue by removing the pre-exising note and added a versionchanged. To test my changes I have rebuilt the documentation with ```make html```. I did not have any errors and the effected page displayed correctly on a browser. https://bugs.python.org/issue36651
1 parent 23bace2 commit 7e954e7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Doc/library/asyncio-eventloop.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -281,9 +281,9 @@ clocks to track time.
281281
the event loop's internal monotonic clock.
282282

283283
.. note::
284-
285-
Timeouts (relative *delay* or absolute *when*) should not
286-
exceed one day.
284+
.. versionchanged:: 3.8
285+
In Python 3.7 and earlier timeouts (relative *delay* or absolute *when*)
286+
should not exceed one day. This has been fixed in Python 3.8.
287287

288288
.. seealso::
289289

0 commit comments

Comments
 (0)