Method
delete
(
&self,
py: Python<'_>,
url: PyBackedStr,
kwds: Option<RequestParams>,
)
Source from the content-addressed store, hash-verified
| 63 | /// Make a DELETE request to the specified URL. |
| 64 | #[pyo3(signature = (url, **kwds))] |
| 65 | pub fn delete( |
| 66 | &self, |
| 67 | py: Python<'_>, |
| 68 | url: PyBackedStr, |
| 69 | kwds: Option<RequestParams>, |
| 70 | ) -> PyResult<BlockingResponse> { |
| 71 | self.request(py, Method::DELETE, url, kwds) |
| 72 | } |
| 73 | |
| 74 | /// Make a HEAD request to the specified URL. |
| 75 | #[pyo3(signature = (url, **kwds))] |
Callers
nothing calls this directly
Tested by
no test coverage detected