summaryrefslogtreecommitdiff
path: root/asyncio/protocols.py
diff options
context:
space:
mode:
Diffstat (limited to 'asyncio/protocols.py')
-rw-r--r--asyncio/protocols.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/asyncio/protocols.py b/asyncio/protocols.py
index 52fc25c..80fcac9 100644
--- a/asyncio/protocols.py
+++ b/asyncio/protocols.py
@@ -78,6 +78,11 @@ class Protocol(BaseProtocol):
State machine of calls:
start -> CM [-> DR*] [-> ER?] -> CL -> end
+
+ * CM: connection_made()
+ * DR: data_received()
+ * ER: eof_received()
+ * CL: connection_lost()
"""
def data_received(self, data):