[Python-checkins] Fix docs markup for asyncio current_task() and all_tasks() (#6089)

Andrew Svetlov webhook-mailer at python.org
Mon Mar 12 14:50:53 EDT 2018


https://github.com/python/cpython/commit/b21505e7109bafe75d87ab63d524b4e749157dbd
commit: b21505e7109bafe75d87ab63d524b4e749157dbd
branch: master
author: Andrew Svetlov <andrew.svetlov at gmail.com>
committer: GitHub <noreply at github.com>
date: 2018-03-12T20:50:50+02:00
summary:

Fix docs markup for asyncio current_task() and all_tasks() (#6089)

files:
M Doc/library/asyncio-task.rst

diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst
index 485e1b843d08..364323d5ca8b 100644
--- a/Doc/library/asyncio-task.rst
+++ b/Doc/library/asyncio-task.rst
@@ -535,7 +535,7 @@ Task functions
    not provided, the default event loop is used.
 
 
-.. function:: current_task(loop=None):
+.. function:: current_task(loop=None)
 
    Return the current running :class:`Task` instance or ``None``, if
    no task is running.
@@ -546,7 +546,7 @@ Task functions
    .. versionadded:: 3.7
 
 
-.. function:: all_tasks(loop=None):
+.. function:: all_tasks(loop=None)
 
    Return a set of :class:`Task` objects created for the loop.
 



More information about the Python-checkins mailing list