MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / HTTPResponse

Class HTTPResponse

thirdparty/bottle/bottle.py:2339–2348  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2337
2338
2339class HTTPResponse(Response, BottleException):
2340 def __init__(self, body='', status=None, headers=None, **more_headers):
2341 super(HTTPResponse, self).__init__(body, status, headers, **more_headers)
2342
2343 def apply(self, other):
2344 other._status_code = self._status_code
2345 other._status_line = self._status_line
2346 other._headers = self._headers
2347 other._cookies = self._cookies
2348 other.body = self.body
2349
2350
2351class HTTPError(HTTPResponse):

Callers 2

mountpoint_wrapperMethod · 0.70
static_fileFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…