| 83 | print = _ |
| 84 | |
| 85 | class ThreadingServer(ThreadingMixIn, HTTPServer): |
| 86 | def finish_request(self, *args, **kwargs): |
| 87 | try: |
| 88 | HTTPServer.finish_request(self, *args, **kwargs) |
| 89 | except Exception: |
| 90 | if DEBUG: |
| 91 | traceback.print_exc() |
| 92 | |
| 93 | class ReqHandler(BaseHTTPRequestHandler): |
| 94 | def do_REQUEST(self): |
no outgoing calls
no test coverage detected
searching dependent graphs…