(
slf: Py<Self>,
py: Python<'_>,
)
| 24 | #[pymethods] |
| 25 | impl AsyncClient { |
| 26 | pub fn __aenter__( |
| 27 | slf: Py<Self>, |
| 28 | py: Python<'_>, |
| 29 | ) -> Result<pyo3::Bound<'_, pyo3::PyAny>, pyo3::PyErr> { |
| 30 | pyo3_async_runtimes::tokio::future_into_py::<_, Py<AsyncClient>>(py, async { Ok(slf) }) |
| 31 | } |
| 32 | |
| 33 | pub fn __aexit__<'python>( |
| 34 | &self, |
nothing calls this directly
no outgoing calls
no test coverage detected