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

Method trace

src/client/blocking/mod.rs:98–105  ·  view source on GitHub ↗
(
        &self,
        py: Python<'_>,
        url: PyBackedStr,
        kwds: Option<RequestParams>,
    )

Source from the content-addressed store, hash-verified

96 /// Make a TRACE request to the specified URL.
97 #[pyo3(signature = (url, **kwds))]
98 pub fn trace(
99 &self,
100 py: Python<'_>,
101 url: PyBackedStr,
102 kwds: Option<RequestParams>,
103 ) -> PyResult<BlockingResponse> {
104 self.request(py, Method::TRACE, url, kwds)
105 }
106
107 /// Make a rqeuest with the specified method and URL.
108 #[pyo3(signature = (method, url, **kwds))]

Callers

nothing calls this directly

Calls 1

requestMethod · 0.45

Tested by

no test coverage detected