summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-protocol.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/asyncio-protocol.rst')
-rw-r--r--Doc/library/asyncio-protocol.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst
index 67ca121..ffac901 100644
--- a/Doc/library/asyncio-protocol.rst
+++ b/Doc/library/asyncio-protocol.rst
@@ -69,6 +69,10 @@ This documentation page contains the following sections:
Transports
==========
+**Source code:** :source:`Lib/asyncio/transports.py`
+
+----------------------------------------------------
+
Transports are classes provided by :mod:`asyncio` in order to abstract
various kinds of communication channels.
@@ -431,6 +435,10 @@ Subprocess Transports
Protocols
=========
+**Source code:** :source:`Lib/asyncio/protocols.py`
+
+---------------------------------------------------
+
asyncio provides a set of abstract base classes that should be used
to implement network protocols. Those classes are meant to be used
together with :ref:`transports <asyncio-transport>`.