()
| 76 | loop = events.get_running_loop() |
| 77 | |
| 78 | def factory(): |
| 79 | reader = StreamReader(limit=limit, loop=loop) |
| 80 | protocol = StreamReaderProtocol(reader, client_connected_cb, |
| 81 | loop=loop) |
| 82 | return protocol |
| 83 | |
| 84 | return await loop.create_server(factory, host, port, **kwds) |
| 85 |
nothing calls this directly
no test coverage detected
searching dependent graphs…