(connection)
| 219 | from threading import Thread |
| 220 | |
| 221 | def handle_connection(connection): |
| 222 | with connection: |
| 223 | session = ServerSession(connection) |
| 224 | try: |
| 225 | session.loop() |
| 226 | except EOFError: |
| 227 | pass |
| 228 | |
| 229 | def run_server(address): |
| 230 | with socket.socket() as listener: |
nothing calls this directly
no test coverage detected