10 lines
141 B
Rust
10 lines
141 B
Rust
use pyo3::prelude::*;
|
|
use pyo3::types::PyList;
|
|
|
|
#[pyfunction]
|
|
fn static_ref(list: &'static PyList) -> usize {
|
|
list.len()
|
|
}
|
|
|
|
fn main() {}
|