| 252 | |
| 253 | #[pyo3(signature = (url, content=None, data=None, headers=None, timeout=Some(Right(USE_CLIENT_DEFAULT_SENTINEL)), force_http3=false))] |
| 254 | pub fn delete<'python>( |
| 255 | &self, |
| 256 | py: Python<'python>, |
| 257 | url: String, |
| 258 | content: Option<Vec<u8>>, |
| 259 | data: Option<RequestBody>, |
| 260 | headers: Option<HashMap<String, String>>, |
| 261 | timeout: Option<Either<f64, &str>>, |
| 262 | force_http3: Option<bool>, |
| 263 | ) -> Result<pyo3::Bound<'python, PyAny>, PyErr> { |
| 264 | self.request( |
| 265 | py, |
| 266 | "delete", |
| 267 | url, |
| 268 | content, |
| 269 | data, |
| 270 | headers, |
| 271 | timeout, |
| 272 | force_http3, |
| 273 | Some(false), |
| 274 | ) |
| 275 | } |
| 276 | |
| 277 | #[pyo3(signature = (url, content=None, data=None, headers=None, timeout=Some(Right(USE_CLIENT_DEFAULT_SENTINEL)), force_http3=false))] |
| 278 | pub fn options<'python>( |