]> granicus.if.org Git - python/commitdiff
bpo-30935: update get_event_loop docs (GH-2731)
authorMandeep Singh <daxlab@users.noreply.github.com>
Tue, 29 May 2018 18:37:08 +0000 (00:07 +0530)
committerYury Selivanov <yury@magic.io>
Tue, 29 May 2018 18:37:08 +0000 (14:37 -0400)
Doc/library/asyncio-eventloops.rst
Doc/whatsnew/3.6.rst

index 3051fde5b93baf93c53e5f48012adf4e365e6c44..7f6e9535a8a508460e728ed408ea80d89b222eb2 100644 (file)
@@ -176,12 +176,15 @@ An event loop policy must implement the following interface:
       Get the event loop for the current context.
 
       Returns an event loop object implementing the :class:`AbstractEventLoop`
-      interface.
+      interface. In case called from coroutine, it returns the currently
+      running event loop.
 
       Raises an exception in case no event loop has been set for the current
       context and the current policy does not specify to create one. It must
       never return ``None``.
 
+      .. versionchanged:: 3.6
+
    .. method:: set_event_loop(loop)
 
       Set the event loop for the current context to *loop*.
index c4b63952896929acb84c534ad795d717467cd960..cb8c53ac3b18828e61018233f6edaf663b76f96d 100644 (file)
@@ -819,7 +819,7 @@ Notable changes in the :mod:`asyncio` module since Python 3.5.0
 (all backported to 3.5.x due to the provisional status):
 
 * The :func:`~asyncio.get_event_loop` function has been changed to
-  always return the currently running loop when called from couroutines
+  always return the currently running loop when called from coroutines
   and callbacks.
   (Contributed by Yury Selivanov in :issue:`28613`.)