(self, body='', status=None, headers=None, **more_headers)
| 1704 | |
| 1705 | class HTTPResponse(Response, BottleException): |
| 1706 | def __init__(self, body='', status=None, headers=None, **more_headers): |
| 1707 | super(HTTPResponse, self).__init__(body, status, headers, **more_headers) |
| 1708 | |
| 1709 | def apply(self, response): |
| 1710 | response._status_code = self._status_code |