diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-12-10 12:18:15 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-12-10 12:18:15 +0100 |
commit | 892f3f1e31b0c41451a6ff797eec8fc324af3710 (patch) | |
tree | 8464248f3b300e6a8f5ae8222c47d85ab3769e6b /Doc/library/asyncio-task.rst | |
parent | e70cd6327fb1be7b56f8658abf617de10203ced6 (diff) | |
download | cpython-892f3f1e31b0c41451a6ff797eec8fc324af3710.tar.gz |
asyncio doc: don't document Task.cancel(), already documented in Future.cancel()
Diffstat (limited to 'Doc/library/asyncio-task.rst')
-rw-r--r-- | Doc/library/asyncio-task.rst | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index 9581188e0e..597e42e333 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -281,10 +281,6 @@ Task ``None`` is returned when called not in the context of a :class:`Task`. - .. method:: cancel() - - Cancel the task. - .. method:: get_stack(self, \*, limit=None) Return the list of stack frames for this task's coroutine. |