]> granicus.if.org Git - python/commitdiff
Issue #21700: Fix asyncio doc, add DatagramProtocol
authorVictor Stinner <victor.stinner@gmail.com>
Tue, 10 Jun 2014 07:19:26 +0000 (09:19 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Tue, 10 Jun 2014 07:19:26 +0000 (09:19 +0200)
Doc/library/asyncio-protocol.rst

index 58c94aebf6f233fec115cbfd83bb62b8777d7497..9c52b384c226aee2478a3caceffad594c214c9d3 100644 (file)
@@ -272,8 +272,8 @@ Protocol classes
 Connection callbacks
 --------------------
 
-These callbacks may be called on :class:`Protocol` and
-:class:`SubprocessProtocol` instances:
+These callbacks may be called on :class:`Protocol`, :class:`DatagramProtocol`
+and :class:`SubprocessProtocol` instances:
 
 .. method:: BaseProtocol.connection_made(transport)
 
@@ -291,10 +291,10 @@ These callbacks may be called on :class:`Protocol` and
    The latter means a regular EOF is received, or the connection was
    aborted or closed by this side of the connection.
 
-:meth:`connection_made` and :meth:`connection_lost` are called exactly once
-per successful connection.  All other callbacks will be called between those
-two methods, which allows for easier resource management in your protocol
-implementation.
+:meth:`~BaseProtocol.connection_made` and :meth:`~BaseProtocol.connection_lost`
+are called exactly once per successful connection.  All other callbacks will be
+called between those two methods, which allows for easier resource management
+in your protocol implementation.
 
 The following callbacks may be called only on :class:`SubprocessProtocol`
 instances: