9e29c1058c
Implement auto trait Implement auto trait Undo oopsie Fix versions Fix CI errors Fix CI Remove more specialization remnants
12 lines
195 B
Rust
12 lines
195 B
Rust
use pyo3::prelude::*;
|
|
use std::rc::Rc;
|
|
|
|
fn main() {
|
|
Python::with_gil(|py| {
|
|
let rc = Rc::new(5);
|
|
|
|
py.allow_threads(|| {
|
|
println!("{:?}", rc);
|
|
});
|
|
});
|
|
} |