Join this Response's url with a possible relative url to form an absolute interpretation of the latter.
(self, url: str)
| 101 | return self._cached_ubody |
| 102 | |
| 103 | def urljoin(self, url: str) -> str: |
| 104 | """Join this Response's url with a possible relative url to form an |
| 105 | absolute interpretation of the latter.""" |
| 106 | return urljoin(get_base_url(self), url) |
| 107 | |
| 108 | @memoizemethod_noargs |
| 109 | def _headers_encoding(self) -> str | None: |