发送 OPTIONS 请求
(self, url: str, **kwargs)
| 165 | return self.request("HEAD", url, **kwargs) |
| 166 | |
| 167 | def options(self, url: str, **kwargs) -> Response: |
| 168 | """发送 OPTIONS 请求""" |
| 169 | return self.request("OPTIONS", url, **kwargs) |
| 170 | |
| 171 | def patch(self, url: str, data: Any = None, json: Any = None, **kwargs) -> Response: |
| 172 | """发送 PATCH 请求""" |
no test coverage detected