//! PyO3 bindings exposed as `reducers._core`. Compiled only with the `python`
//! feature.
usepyo3::prelude::*;modreducers;pub(crate)fnregister(m:&Bound<'_, PyModule>)->PyResult<()>{reducers::register(m)?;
m.add("__version__",env!("CARGO_PKG_VERSION"))?;Ok(())}