polars_error/
constants.rs#[cfg(feature = "python")]
pub static TRUE: &str = "True";
#[cfg(feature = "python")]
pub static FALSE: &str = "False";
#[cfg(not(feature = "python"))]
pub static TRUE: &str = "true";
#[cfg(not(feature = "python"))]
pub static FALSE: &str = "false";
#[cfg(not(feature = "python"))]
pub static LENGTH_LIMIT_MSG: &str =
"Polars' maximum length reached. Consider compiling with 'bigidx' feature.";
#[cfg(feature = "python")]
pub static LENGTH_LIMIT_MSG: &str =
"Polars' maximum length reached. Consider installing 'polars-u64-idx'.";