The base URL is used to extract the URL scheme, host name, port, and root path.
(self)
| 443 | |
| 444 | @property |
| 445 | def base_url(self) -> str: |
| 446 | """The base URL is used to extract the URL scheme, host name, |
| 447 | port, and root path. |
| 448 | """ |
| 449 | return self._make_base_url(self.url_scheme, self.host, self.script_root) |
| 450 | |
| 451 | @base_url.setter |
| 452 | def base_url(self, value: str | None) -> None: |
nothing calls this directly
no test coverage detected