summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-12-10 01:52:49 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-12-10 01:52:49 (GMT)
commitfc25d629aba73a0da3fa0dd9de640a117fd76c29 (patch)
tree16ea3d68be85a1fd587e5f02a348328f78512285 /Doc
parent34f2946a11b4d91a54da1a4d257ab3dd2b828ade (diff)
downloadcpython-fc25d629aba73a0da3fa0dd9de640a117fd76c29.zip
cpython-fc25d629aba73a0da3fa0dd9de640a117fd76c29.tar.gz
cpython-fc25d629aba73a0da3fa0dd9de640a117fd76c29.tar.bz2
asyncio: don't document private functions
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/asyncio-task.rst8
1 files changed, 0 insertions, 8 deletions
diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst
index f42aaa7..5769e91 100644
--- a/Doc/library/asyncio-task.rst
+++ b/Doc/library/asyncio-task.rst
@@ -391,14 +391,6 @@ Task functions
outer Future is *not* cancelled in this case. (This is to prevent the
cancellation of one child to cause other children to be cancelled.)
-.. function:: tasks.iscoroutinefunction(func)
-
- Return ``True`` if *func* is a decorated coroutine function.
-
-.. function:: tasks.iscoroutine(obj)
-
- Return ``True`` if *obj* is a coroutine object.
-
.. function:: sleep(delay, result=None, \*, loop=None)
Create a :ref:`coroutine <coroutine>` that completes after a given time