2021-08-01 21:41:32 +00:00
|
|
|
use pyo3::{types::PyDict, Py, Python};
|
2020-04-20 17:44:31 +00:00
|
|
|
|
|
|
|
fn main() {
|
2023-02-22 21:46:42 +00:00
|
|
|
let dict: Py<PyDict> = Python::with_gil(|py| PyDict::new(py).into());
|
|
|
|
|
|
|
|
// Should not be able to get access to Py contents outside of with_gil.
|
|
|
|
let dict: &PyDict = Python::with_gil(|py| dict.as_ref(py));
|
2020-04-20 17:44:31 +00:00
|
|
|
|
|
|
|
let _py: Python = dict.py(); // Obtain a Python<'p> without GIL.
|
|
|
|
}
|