(self)
| 26 | |
| 27 | class UrlAppHandler(BaseHTTPRequestHandler): |
| 28 | def do_GET(self): |
| 29 | args = parse(self.path) |
| 30 | fun,args = locate(self.server, args) |
| 31 | self.send_response(200) |
| 32 | self.end_headers() |
| 33 | try: |
| 34 | run(fun, args, self.rfile, self.wfile) |
| 35 | except: |
| 36 | self.wfile.write(format_exc()) |
| 37 | |
| 38 | class UrlApp: |
| 39 | def __call__(self, *a, **kw): pass |
nothing calls this directly
no test coverage detected