polars_python/functions/
random.rs

1use pyo3::prelude::*;
2
3#[pyfunction]
4pub fn set_random_seed(seed: u64) -> PyResult<()> {
5    polars_core::random::set_global_random_seed(seed);
6    Ok(())
7}