(self)
| 95 | do_DELETE = run_wsgi_app |
| 96 | |
| 97 | def do_GET(self): |
| 98 | if self.path.startswith("/static/"): |
| 99 | SimpleHTTPRequestHandler.do_GET(self) |
| 100 | else: |
| 101 | self.run_wsgi_app() |
| 102 | |
| 103 | def wsgi_start_response(self, response_status, response_headers, exc_info=None): |
| 104 | if self.wsgi_sent_headers: |
nothing calls this directly
no test coverage detected