Returns the status code for our response.
(self)
| 366 | self._reason = httputil.responses.get(status_code, "Unknown") |
| 367 | |
| 368 | def get_status(self) -> int: |
| 369 | """Returns the status code for our response.""" |
| 370 | return self._status_code |
| 371 | |
| 372 | def set_header(self, name: str, value: _HeaderTypes) -> None: |
| 373 | """Sets the given response header name and value. |
no outgoing calls