Serve the request path.
(self, request)
| 46 | return url2pathname(relative_url) |
| 47 | |
| 48 | def serve(self, request): |
| 49 | """Serve the request path.""" |
| 50 | return serve(request, self.file_path(request.path), insecure=True) |
| 51 | |
| 52 | def get_response(self, request): |
| 53 | try: |
no test coverage detected