(host="127.0.0.1", port=0)
| 392 | |
| 393 | |
| 394 | def serve(host="127.0.0.1", port=0): |
| 395 | global listener |
| 396 | listener = sockets.serve("Server", Connection, host, port) |
| 397 | sessions.report_sockets() |
| 398 | return sockets.get_address(listener) |
| 399 | |
| 400 | |
| 401 | def is_serving(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…