pyo3/tests/ui/pyclass_send.rs

27 lines
550 B
Rust
Raw Normal View History

2021-01-05 22:20:08 +00:00
use pyo3::prelude::*;
use std::rc::Rc;
#[pyclass]
struct NotThreadSafe {
2023-02-22 21:46:42 +00:00
data: Rc<i32>,
2021-01-05 22:20:08 +00:00
}
fn main() {
2023-02-22 21:46:42 +00:00
let obj = Python::with_gil(|py| {
PyCell::new(py, NotThreadSafe { data: Rc::new(5) })
.unwrap()
.to_object(py)
});
2021-01-05 22:20:08 +00:00
std::thread::spawn(move || {
2023-02-22 21:46:42 +00:00
Python::with_gil(|py| {
// Uh oh, moved Rc to a new thread!
let c: &PyCell<NotThreadSafe> = obj.as_ref(py).downcast().unwrap();
2021-01-05 22:20:08 +00:00
2023-02-22 21:46:42 +00:00
assert_eq!(*c.borrow().data, 5);
})
})
.join()
.unwrap();
2021-01-05 22:20:08 +00:00
}