summaryrefslogtreecommitdiff
path: root/Doc/library/asyncio-protocol.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-01-24 18:11:43 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-01-24 18:11:43 +0100
commit8c462c5a8027737244cb6654462eb3725e885cc4 (patch)
treef44516a6829592e309a46508d5d76d48473c2fd4 /Doc/library/asyncio-protocol.rst
parentc3bf14d1ebce053852298d4a83d524afa670ffc7 (diff)
downloadcpython-git-8c462c5a8027737244cb6654462eb3725e885cc4.tar.gz
asyncio doc: move AbstractServer to the event loop page
Add also entries in the table of content for each synchronization primitive class.
Diffstat (limited to 'Doc/library/asyncio-protocol.rst')
-rw-r--r--Doc/library/asyncio-protocol.rst16
1 files changed, 0 insertions, 16 deletions
diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst
index d35c70da9a..8eb1d680fb 100644
--- a/Doc/library/asyncio-protocol.rst
+++ b/Doc/library/asyncio-protocol.rst
@@ -415,22 +415,6 @@ coroutine with ``yield from``. For example, the :meth:`StreamWriter.drain`
coroutine can be used to wait until the write buffer is flushed.
-Server
-------
-
-.. class:: AbstractServer
-
- Abstract server returned by :func:`BaseEventLoop.create_server`.
-
- .. method:: close()
-
- Stop serving. This leaves existing connections open.
-
- .. method:: wait_closed()
-
- Coroutine to wait until service is closed.
-
-
Protocol example: TCP echo server and client
============================================