Method
options
(
&self,
py: Python<'_>,
url: PyBackedStr,
kwds: Option<RequestParams>,
)
Source from the content-addressed store, hash-verified
| 85 | /// Make a OPTIONS request to the specified URL. |
| 86 | #[pyo3(signature = (url, **kwds))] |
| 87 | pub fn options( |
| 88 | &self, |
| 89 | py: Python<'_>, |
| 90 | url: PyBackedStr, |
| 91 | kwds: Option<RequestParams>, |
| 92 | ) -> PyResult<BlockingResponse> { |
| 93 | self.request(py, Method::OPTIONS, url, kwds) |
| 94 | } |
| 95 | |
| 96 | /// Make a TRACE request to the specified URL. |
| 97 | #[pyo3(signature = (url, **kwds))] |
Callers
nothing calls this directly
Tested by
no test coverage detected