From: Victor Stinner Date: Tue, 10 Dec 2013 01:52:49 +0000 (+0100) Subject: asyncio: don't document private functions X-Git-Tag: v3.4.0b2~272 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fc25d629aba73a0da3fa0dd9de640a117fd76c29;p=thirdparty%2FPython%2Fcpython.git asyncio: don't document private functions --- diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index f42aaa7de81b..5769e9152010 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 ` that completes after a given time