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

Method trace

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

Source from the content-addressed store, hash-verified

116 /// Make a TRACE request to the given URL.
117 #[pyo3(signature = (url, **kwds))]
118 pub fn trace<'py>(
119 &self,
120 py: Python<'py>,
121 url: PyBackedStr,
122 kwds: Option<RequestParams>,
123 ) -> PyResult<Bound<'py, PyAny>> {
124 self.request(py, Method::TRACE, url, kwds)
125 }
126
127 /// Make a request with the given method and URL.
128 #[pyo3(signature = (method, url, **kwds))]

Callers

nothing calls this directly

Calls 1

requestMethod · 0.45

Tested by

no test coverage detected