use pyo3::prelude::*;
#[pyfunction]
pub fn enable_string_cache() {
}
#[pyfunction]
pub fn disable_string_cache() {
}
#[pyfunction]
pub fn using_string_cache() -> bool {
true
}
#[pyclass(frozen)]
pub struct PyStringCacheHolder;
#[pymethods]
impl PyStringCacheHolder {
#[new]
fn new() -> Self {
Self
}
}