发送 DELETE 请求
(self, url: str, **kwargs)
| 157 | return self.request("PUT", url, data=data, json=json, **kwargs) |
| 158 | |
| 159 | def delete(self, url: str, **kwargs) -> Response: |
| 160 | """发送 DELETE 请求""" |
| 161 | return self.request("DELETE", url, **kwargs) |
| 162 | |
| 163 | def head(self, url: str, **kwargs) -> Response: |
| 164 | """发送 HEAD 请求""" |
no test coverage detected