2018-08-19 18:42:17 +00:00
|
|
|
#![feature(specialization)]
|
2018-05-02 18:49:40 +00:00
|
|
|
|
|
|
|
extern crate pyo3;
|
|
|
|
|
|
|
|
use pyo3::prelude::*;
|
|
|
|
use std::isize;
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
mod common;
|
|
|
|
|
2018-07-08 21:33:48 +00:00
|
|
|
#[pyclass]
|
2018-05-02 18:49:40 +00:00
|
|
|
struct MutRefArg {
|
|
|
|
n: i32,
|
|
|
|
token: PyToken,
|
|
|
|
}
|
|
|
|
|
2018-07-08 21:33:48 +00:00
|
|
|
#[pymethods]
|
2018-05-02 18:49:40 +00:00
|
|
|
impl MutRefArg {
|
|
|
|
fn get(&self) -> PyResult<i32> {
|
|
|
|
Ok(self.n)
|
|
|
|
}
|
|
|
|
fn set_other(&self, other: &mut MutRefArg) -> PyResult<()> {
|
|
|
|
other.n = 100;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn mut_ref_arg() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
2018-06-15 19:21:12 +00:00
|
|
|
let inst1 = py.init(|t| MutRefArg { token: t, n: 0 }).unwrap();
|
|
|
|
let inst2 = py.init(|t| MutRefArg { token: t, n: 0 }).unwrap();
|
2018-05-02 18:49:40 +00:00
|
|
|
|
|
|
|
let d = PyDict::new(py);
|
|
|
|
d.set_item("inst1", &inst1).unwrap();
|
|
|
|
d.set_item("inst2", &inst2).unwrap();
|
|
|
|
|
|
|
|
py.run("inst1.set_other(inst2)", None, Some(d)).unwrap();
|
|
|
|
assert_eq!(inst2.as_ref(py).n, 100);
|
|
|
|
}
|