Method
patch
(
&self,
py: Python<'_>,
url: PyBackedStr,
kwds: Option<RequestParams>,
)
Source from the content-addressed store, hash-verified
| 52 | /// Make a PATCH request to the specified URL. |
| 53 | #[pyo3(signature = (url, **kwds))] |
| 54 | pub fn patch( |
| 55 | &self, |
| 56 | py: Python<'_>, |
| 57 | url: PyBackedStr, |
| 58 | kwds: Option<RequestParams>, |
| 59 | ) -> PyResult<BlockingResponse> { |
| 60 | self.request(py, Method::PATCH, url, kwds) |
| 61 | } |
| 62 | |
| 63 | /// Make a DELETE request to the specified URL. |
| 64 | #[pyo3(signature = (url, **kwds))] |
Callers
nothing calls this directly
Tested by
no test coverage detected