Skip to main content

polars_python/
interned.rs

1pub static RESHAPE: pyo3::sync::Interned = pyo3::sync::Interned::new("reshape");
2pub static SHAPE: pyo3::sync::Interned = pyo3::sync::Interned::new("shape");
3pub static DUNDER_GETITEM: pyo3::sync::Interned = pyo3::sync::Interned::new("__getitem__");
4pub static TO_PY_DECIMAL: pyo3::sync::Interned = pyo3::sync::Interned::new("to_py_decimal");
5pub static DUNDER_CLASS: pyo3::sync::Interned = pyo3::sync::Interned::new("__class__");
6pub static DUNDER_NAME: pyo3::sync::Interned = pyo3::sync::Interned::new("__name__");
7pub static NAME: pyo3::sync::Interned = pyo3::sync::Interned::new("name");
8pub static DTYPE: pyo3::sync::Interned = pyo3::sync::Interned::new("dtype");
9pub static COPY: pyo3::sync::Interned = pyo3::sync::Interned::new("copy");