(path)
| 59 | sock, port = bind_unused_port() |
| 60 | |
| 61 | def get_url(path): |
| 62 | return "http://127.0.0.1:%d%s" % (port, path) |
| 63 | |
| 64 | # ensure that none of these processes live too long |
| 65 | signal.alarm(5) # master process |
no outgoing calls
no test coverage detected