diff --git a/bindings/codemp_client.cpython-38-darwin.so.REMOVED.git-id b/bindings/codemp_client.cpython-38-darwin.so.REMOVED.git-id index 5c4edd1..93a1fce 100644 --- a/bindings/codemp_client.cpython-38-darwin.so.REMOVED.git-id +++ b/bindings/codemp_client.cpython-38-darwin.so.REMOVED.git-id @@ -1 +1 @@ -ef547495939b20dc50fcf0505d8ebd77dc3721f1 \ No newline at end of file +b6bceb4b1aed8179ebc591aa695da27a964bb8ed \ No newline at end of file diff --git a/src/lib.rs b/src/lib.rs index 2f30211..ea10daa 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -161,20 +161,22 @@ impl PyClientHandle { }) } - fn select_buffer<'a>(&'a self, py: Python<'a>) -> PyResult<&'a PyAny> { - let rc = self.0.clone(); + // TODO: SELECT_BUFFER IS NO LONGER A CLIENT FUNCTION. + // low prio, add it back eventually. + // fn select_buffer<'a>(&'a self, py: Python<'a>) -> PyResult<&'a PyAny> { + // let rc = self.0.clone(); - pyo3_asyncio::tokio::future_into_py(py, async move { - let cont = rc.select_buffer() - .await - .map_err(PyCodempError::from)?; + // pyo3_asyncio::tokio::future_into_py(py, async move { + // let cont = rc.select_buffer() + // .await + // .map_err(PyCodempError::from)?; - Python::with_gil(|py| { - let pystr: Py = PyString::new(py, cont.as_str()).into(); - Ok(pystr) - }) - }) - } + // Python::with_gil(|py| { + // let pystr: Py = PyString::new(py, cont.as_str()).into(); + // Ok(pystr) + // }) + // }) + // } }