MCPcopy Create free account
hub / github.com/0x676e67/wreq-python / patch

Method patch

src/client/blocking/mod.rs:54–61  ·  view source on GitHub ↗
(
        &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

Calls 1

requestMethod · 0.45

Tested by

no test coverage detected