We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce28c7c commit a4c0698Copy full SHA for a4c0698
packages/cubejs-backend-native/src/python/utils.rs
@@ -1,8 +1,8 @@
1
use crate::cross::*;
2
use pyo3::exceptions::{PyNotImplementedError, PySystemError};
3
-use pyo3::ffi;
4
use pyo3::prelude::*;
5
use pyo3::types::{PyFunction, PyString, PyTuple};
+use pyo3::{ffi, AsPyPointer};
6
use std::ffi::c_int;
7
8
pub fn python_fn_call_sync(py_fun: &Py<PyFunction>, arguments: Vec<CLRepr>) -> PyResult<CLRepr> {
0 commit comments