pyo3/tests/ui/abi3_dict.rs

8 lines
136 B
Rust

//! With abi3, dict not supported until python 3.9 or greater
use pyo3::prelude::*;
#[pyclass(dict)]
struct TestClass {}
fn main() {}