Method
put
(
&self,
py: Python<'_>,
url: PyBackedStr,
kwds: Option<RequestParams>,
)
Source from the content-addressed store, hash-verified
| 41 | /// Make a PUT request to the specified URL. |
| 42 | #[pyo3(signature = (url, **kwds))] |
| 43 | pub fn put( |
| 44 | &self, |
| 45 | py: Python<'_>, |
| 46 | url: PyBackedStr, |
| 47 | kwds: Option<RequestParams>, |
| 48 | ) -> PyResult<BlockingResponse> { |
| 49 | self.request(py, Method::PUT, url, kwds) |
| 50 | } |
| 51 | |
| 52 | /// Make a PATCH request to the specified URL. |
| 53 | #[pyo3(signature = (url, **kwds))] |
Callers
nothing calls this directly
Tested by
no test coverage detected