polars_python/functions/
utils.rs

1
2
3
4
5
6
7
use polars::prelude::_set_check_length;
use pyo3::prelude::*;

#[pyfunction]
pub fn check_length(check: bool) {
    unsafe { _set_check_length(check) }
}