diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2014-01-24 18:11:43 +0100 |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2014-01-24 18:11:43 +0100 |
| commit | 8c462c5a8027737244cb6654462eb3725e885cc4 (patch) | |
| tree | f44516a6829592e309a46508d5d76d48473c2fd4 /Doc/library/asyncio-protocol.rst | |
| parent | c3bf14d1ebce053852298d4a83d524afa670ffc7 (diff) | |
| download | cpython-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.rst | 16 |
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 ============================================ |
