(
&self,
py: Python<'_>,
url: PyBackedStr,
kwds: Option<RequestParams>,
)
| 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))] |