[Python-checkins] cpython: asyncio: don't document private functions

victor.stinner python-checkins at python.org
Tue Dec 10 02:52:59 CET 2013


http://hg.python.org/cpython/rev/1cecfc642333
changeset:   87867:1cecfc642333
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Tue Dec 10 02:52:49 2013 +0100
summary:
  asyncio: don't document private functions

files:
  Doc/library/asyncio-task.rst |  8 --------
  1 files changed, 0 insertions(+), 8 deletions(-)


diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst
--- a/Doc/library/asyncio-task.rst
+++ b/Doc/library/asyncio-task.rst
@@ -391,14 +391,6 @@
    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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list