| 114 | |
| 115 | |
| 116 | class MyProto(MyBaseProto): |
| 117 | def connection_made(self, transport): |
| 118 | super().connection_made(transport) |
| 119 | transport.write(b'GET / HTTP/1.0\r\nHost: example.com\r\n\r\n') |
| 120 | |
| 121 | |
| 122 | class MyDatagramProto(asyncio.DatagramProtocol): |
no outgoing calls
searching dependent graphs…