2021-12-03 00:03:32 +00:00
|
|
|
|
#![cfg(feature = "macros")]
|
|
|
|
|
|
2022-02-25 17:52:36 +00:00
|
|
|
|
use pyo3::exceptions::{PyAttributeError, PyIndexError, PyValueError};
|
2021-11-06 11:21:15 +00:00
|
|
|
|
use pyo3::types::{PyDict, PyList, PyMapping, PySequence, PySlice, PyType};
|
2024-02-19 22:07:05 +00:00
|
|
|
|
use pyo3::{prelude::*, py_run};
|
2024-04-13 12:59:44 +00:00
|
|
|
|
use std::iter;
|
2021-09-09 08:11:41 +00:00
|
|
|
|
|
2023-09-24 12:34:53 +00:00
|
|
|
|
#[path = "../src/tests/common.rs"]
|
2021-09-09 08:11:41 +00:00
|
|
|
|
mod common;
|
|
|
|
|
|
2021-11-07 08:16:15 +00:00
|
|
|
|
#[pyclass]
|
|
|
|
|
struct EmptyClass;
|
|
|
|
|
|
2021-09-09 08:11:41 +00:00
|
|
|
|
#[pyclass]
|
|
|
|
|
struct ExampleClass {
|
|
|
|
|
#[pyo3(get, set)]
|
|
|
|
|
value: i32,
|
2023-07-14 12:42:35 +00:00
|
|
|
|
custom_attr: Option<i32>,
|
2021-09-09 08:11:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
|
impl ExampleClass {
|
2022-03-23 07:07:28 +00:00
|
|
|
|
fn __getattr__(&self, py: Python<'_>, attr: &str) -> PyResult<PyObject> {
|
2021-09-09 08:11:41 +00:00
|
|
|
|
if attr == "special_custom_attr" {
|
2023-07-14 12:42:35 +00:00
|
|
|
|
Ok(self.custom_attr.into_py(py))
|
2021-09-09 08:11:41 +00:00
|
|
|
|
} else {
|
|
|
|
|
Err(PyAttributeError::new_err(attr.to_string()))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-20 22:35:08 +00:00
|
|
|
|
fn __setattr__(&mut self, attr: &str, value: &Bound<'_, PyAny>) -> PyResult<()> {
|
2021-09-09 08:11:41 +00:00
|
|
|
|
if attr == "special_custom_attr" {
|
2023-07-14 12:42:35 +00:00
|
|
|
|
self.custom_attr = Some(value.extract()?);
|
2021-09-09 08:11:41 +00:00
|
|
|
|
Ok(())
|
|
|
|
|
} else {
|
|
|
|
|
Err(PyAttributeError::new_err(attr.to_string()))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn __delattr__(&mut self, attr: &str) -> PyResult<()> {
|
|
|
|
|
if attr == "special_custom_attr" {
|
2023-07-14 12:42:35 +00:00
|
|
|
|
self.custom_attr = None;
|
2021-09-09 08:11:41 +00:00
|
|
|
|
Ok(())
|
|
|
|
|
} else {
|
|
|
|
|
Err(PyAttributeError::new_err(attr.to_string()))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn __str__(&self) -> String {
|
|
|
|
|
self.value.to_string()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn __repr__(&self) -> String {
|
|
|
|
|
format!("ExampleClass(value={})", self.value)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn __hash__(&self) -> u64 {
|
|
|
|
|
let i64_value: i64 = self.value.into();
|
|
|
|
|
i64_value as u64
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn __bool__(&self) -> bool {
|
|
|
|
|
self.value != 0
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-20 07:10:45 +00:00
|
|
|
|
fn make_example(py: Python<'_>) -> Bound<'_, ExampleClass> {
|
|
|
|
|
Bound::new(
|
2021-09-09 08:11:41 +00:00
|
|
|
|
py,
|
|
|
|
|
ExampleClass {
|
|
|
|
|
value: 5,
|
2023-07-14 12:42:35 +00:00
|
|
|
|
custom_attr: Some(20),
|
2021-09-09 08:11:41 +00:00
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
.unwrap()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_getattr() {
|
|
|
|
|
Python::with_gil(|py| {
|
|
|
|
|
let example_py = make_example(py);
|
|
|
|
|
assert_eq!(
|
|
|
|
|
example_py
|
|
|
|
|
.getattr("value")
|
|
|
|
|
.unwrap()
|
|
|
|
|
.extract::<i32>()
|
|
|
|
|
.unwrap(),
|
|
|
|
|
5,
|
|
|
|
|
);
|
|
|
|
|
assert_eq!(
|
|
|
|
|
example_py
|
|
|
|
|
.getattr("special_custom_attr")
|
|
|
|
|
.unwrap()
|
|
|
|
|
.extract::<i32>()
|
|
|
|
|
.unwrap(),
|
|
|
|
|
20,
|
|
|
|
|
);
|
|
|
|
|
assert!(example_py
|
|
|
|
|
.getattr("other_attr")
|
|
|
|
|
.unwrap_err()
|
2021-11-12 18:19:54 +00:00
|
|
|
|
.is_instance_of::<PyAttributeError>(py));
|
2021-09-09 08:11:41 +00:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_setattr() {
|
|
|
|
|
Python::with_gil(|py| {
|
|
|
|
|
let example_py = make_example(py);
|
2024-02-22 22:38:42 +00:00
|
|
|
|
example_py.setattr("special_custom_attr", 15).unwrap();
|
2021-09-09 08:11:41 +00:00
|
|
|
|
assert_eq!(
|
|
|
|
|
example_py
|
|
|
|
|
.getattr("special_custom_attr")
|
|
|
|
|
.unwrap()
|
|
|
|
|
.extract::<i32>()
|
|
|
|
|
.unwrap(),
|
|
|
|
|
15,
|
|
|
|
|
);
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_delattr() {
|
|
|
|
|
Python::with_gil(|py| {
|
|
|
|
|
let example_py = make_example(py);
|
2024-02-22 22:38:42 +00:00
|
|
|
|
example_py.delattr("special_custom_attr").unwrap();
|
|
|
|
|
assert!(example_py.getattr("special_custom_attr").unwrap().is_none());
|
2021-09-09 08:11:41 +00:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_str() {
|
|
|
|
|
Python::with_gil(|py| {
|
|
|
|
|
let example_py = make_example(py);
|
2024-02-22 22:38:42 +00:00
|
|
|
|
assert_eq!(example_py.str().unwrap().to_cow().unwrap(), "5");
|
2021-09-09 08:11:41 +00:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_repr() {
|
|
|
|
|
Python::with_gil(|py| {
|
|
|
|
|
let example_py = make_example(py);
|
|
|
|
|
assert_eq!(
|
2024-02-22 22:38:42 +00:00
|
|
|
|
example_py.repr().unwrap().to_cow().unwrap(),
|
2021-09-09 08:11:41 +00:00
|
|
|
|
"ExampleClass(value=5)"
|
|
|
|
|
);
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_hash() {
|
|
|
|
|
Python::with_gil(|py| {
|
|
|
|
|
let example_py = make_example(py);
|
2024-02-22 22:38:42 +00:00
|
|
|
|
assert_eq!(example_py.hash().unwrap(), 5);
|
2021-09-09 08:11:41 +00:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_bool() {
|
|
|
|
|
Python::with_gil(|py| {
|
|
|
|
|
let example_py = make_example(py);
|
2024-02-22 22:38:42 +00:00
|
|
|
|
assert!(example_py.is_truthy().unwrap());
|
2021-09-09 08:11:41 +00:00
|
|
|
|
example_py.borrow_mut().value = 0;
|
2024-02-22 22:38:42 +00:00
|
|
|
|
assert!(!example_py.is_truthy().unwrap());
|
2021-09-09 08:11:41 +00:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pyclass]
|
2021-11-06 11:21:15 +00:00
|
|
|
|
pub struct LenOverflow;
|
2021-09-09 08:11:41 +00:00
|
|
|
|
|
|
|
|
|
#[pymethods]
|
2021-11-06 11:21:15 +00:00
|
|
|
|
impl LenOverflow {
|
2021-09-09 08:11:41 +00:00
|
|
|
|
fn __len__(&self) -> usize {
|
2021-11-06 11:21:15 +00:00
|
|
|
|
(isize::MAX as usize) + 1
|
2021-09-09 08:11:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
2021-11-06 11:21:15 +00:00
|
|
|
|
fn len_overflow() {
|
|
|
|
|
Python::with_gil(|py| {
|
|
|
|
|
let inst = Py::new(py, LenOverflow).unwrap();
|
|
|
|
|
py_expect_exception!(py, inst, "len(inst)", PyOverflowError);
|
|
|
|
|
});
|
|
|
|
|
}
|
2021-09-09 08:11:41 +00:00
|
|
|
|
|
2021-11-06 11:21:15 +00:00
|
|
|
|
#[pyclass]
|
|
|
|
|
pub struct Mapping {
|
|
|
|
|
values: Py<PyDict>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
|
impl Mapping {
|
2022-03-23 07:07:28 +00:00
|
|
|
|
fn __len__(&self, py: Python<'_>) -> usize {
|
2024-02-18 00:09:56 +00:00
|
|
|
|
self.values.bind(py).len()
|
2021-09-09 08:11:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-02-18 00:09:56 +00:00
|
|
|
|
fn __getitem__<'py>(&self, key: &Bound<'py, PyAny>) -> PyResult<Bound<'py, PyAny>> {
|
|
|
|
|
let any: &Bound<'py, PyAny> = self.values.bind(key.py());
|
2021-11-06 11:21:15 +00:00
|
|
|
|
any.get_item(key)
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-18 00:09:56 +00:00
|
|
|
|
fn __setitem__<'py>(&self, key: &Bound<'py, PyAny>, value: &Bound<'py, PyAny>) -> PyResult<()> {
|
|
|
|
|
self.values.bind(key.py()).set_item(key, value)
|
2021-11-06 11:21:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-02-18 00:09:56 +00:00
|
|
|
|
fn __delitem__(&self, key: &Bound<'_, PyAny>) -> PyResult<()> {
|
|
|
|
|
self.values.bind(key.py()).del_item(key)
|
2021-11-06 11:21:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn mapping() {
|
|
|
|
|
Python::with_gil(|py| {
|
2022-08-10 20:03:18 +00:00
|
|
|
|
PyMapping::register::<Mapping>(py).unwrap();
|
|
|
|
|
|
2021-11-06 11:21:15 +00:00
|
|
|
|
let inst = Py::new(
|
|
|
|
|
py,
|
|
|
|
|
Mapping {
|
2024-02-11 23:55:56 +00:00
|
|
|
|
values: PyDict::new_bound(py).into(),
|
2021-11-06 11:21:15 +00:00
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
.unwrap();
|
|
|
|
|
|
2024-02-22 22:38:42 +00:00
|
|
|
|
let mapping: &Bound<'_, PyMapping> = inst.bind(py).downcast().unwrap();
|
2021-11-06 11:21:15 +00:00
|
|
|
|
|
|
|
|
|
py_assert!(py, inst, "len(inst) == 0");
|
|
|
|
|
|
|
|
|
|
py_run!(py, inst, "inst['foo'] = 'foo'");
|
|
|
|
|
py_assert!(py, inst, "inst['foo'] == 'foo'");
|
|
|
|
|
py_run!(py, inst, "del inst['foo']");
|
|
|
|
|
py_expect_exception!(py, inst, "inst['foo']", PyKeyError);
|
|
|
|
|
|
|
|
|
|
// Default iteration will call __getitem__ with integer indices
|
|
|
|
|
// which fails with a KeyError
|
|
|
|
|
py_expect_exception!(py, inst, "[*inst] == []", PyKeyError, "0");
|
|
|
|
|
|
|
|
|
|
// check mapping protocol
|
|
|
|
|
assert_eq!(mapping.len().unwrap(), 0);
|
|
|
|
|
|
|
|
|
|
mapping.set_item(0, 5).unwrap();
|
|
|
|
|
assert_eq!(mapping.len().unwrap(), 1);
|
|
|
|
|
|
|
|
|
|
assert_eq!(mapping.get_item(0).unwrap().extract::<u8>().unwrap(), 5);
|
|
|
|
|
|
|
|
|
|
mapping.del_item(0).unwrap();
|
|
|
|
|
assert_eq!(mapping.len().unwrap(), 0);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(FromPyObject)]
|
2024-05-09 22:21:48 +00:00
|
|
|
|
enum SequenceIndex<'py> {
|
2021-11-06 11:21:15 +00:00
|
|
|
|
Integer(isize),
|
2024-05-09 22:21:48 +00:00
|
|
|
|
Slice(Bound<'py, PySlice>),
|
2021-11-06 11:21:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pyclass]
|
|
|
|
|
pub struct Sequence {
|
|
|
|
|
values: Vec<PyObject>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
|
impl Sequence {
|
|
|
|
|
fn __len__(&self) -> usize {
|
|
|
|
|
self.values.len()
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-05 07:57:27 +00:00
|
|
|
|
fn __getitem__(&self, index: SequenceIndex<'_>, py: Python<'_>) -> PyResult<PyObject> {
|
2021-11-06 11:21:15 +00:00
|
|
|
|
match index {
|
|
|
|
|
SequenceIndex::Integer(index) => {
|
|
|
|
|
let uindex = self.usize_index(index)?;
|
|
|
|
|
self.values
|
|
|
|
|
.get(uindex)
|
2024-02-05 07:57:27 +00:00
|
|
|
|
.map(|o| o.clone_ref(py))
|
2021-11-06 11:21:15 +00:00
|
|
|
|
.ok_or_else(|| PyIndexError::new_err(index))
|
|
|
|
|
}
|
|
|
|
|
// Just to prove that slicing can be implemented
|
|
|
|
|
SequenceIndex::Slice(s) => Ok(s.into()),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn __setitem__(&mut self, index: isize, value: PyObject) -> PyResult<()> {
|
|
|
|
|
let uindex = self.usize_index(index)?;
|
|
|
|
|
self.values
|
|
|
|
|
.get_mut(uindex)
|
|
|
|
|
.map(|place| *place = value)
|
|
|
|
|
.ok_or_else(|| PyIndexError::new_err(index))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn __delitem__(&mut self, index: isize) -> PyResult<()> {
|
|
|
|
|
let uindex = self.usize_index(index)?;
|
|
|
|
|
if uindex >= self.values.len() {
|
|
|
|
|
Err(PyIndexError::new_err(index))
|
|
|
|
|
} else {
|
|
|
|
|
self.values.remove(uindex);
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn append(&mut self, value: PyObject) {
|
|
|
|
|
self.values.push(value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Sequence {
|
|
|
|
|
fn usize_index(&self, index: isize) -> PyResult<usize> {
|
|
|
|
|
if index < 0 {
|
|
|
|
|
let corrected_index = index + self.values.len() as isize;
|
|
|
|
|
if corrected_index < 0 {
|
|
|
|
|
Err(PyIndexError::new_err(index))
|
|
|
|
|
} else {
|
|
|
|
|
Ok(corrected_index as usize)
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
Ok(index as usize)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn sequence() {
|
|
|
|
|
Python::with_gil(|py| {
|
2022-08-10 20:03:18 +00:00
|
|
|
|
PySequence::register::<Sequence>(py).unwrap();
|
|
|
|
|
|
2021-11-06 11:21:15 +00:00
|
|
|
|
let inst = Py::new(py, Sequence { values: vec![] }).unwrap();
|
|
|
|
|
|
2024-02-22 22:38:42 +00:00
|
|
|
|
let sequence: &Bound<'_, PySequence> = inst.bind(py).downcast().unwrap();
|
2021-11-06 11:21:15 +00:00
|
|
|
|
|
|
|
|
|
py_assert!(py, inst, "len(inst) == 0");
|
|
|
|
|
|
|
|
|
|
py_expect_exception!(py, inst, "inst[0]", PyIndexError);
|
|
|
|
|
py_run!(py, inst, "inst.append('foo')");
|
|
|
|
|
|
|
|
|
|
py_assert!(py, inst, "inst[0] == 'foo'");
|
|
|
|
|
py_assert!(py, inst, "inst[-1] == 'foo'");
|
|
|
|
|
|
|
|
|
|
py_expect_exception!(py, inst, "inst[1]", PyIndexError);
|
|
|
|
|
py_expect_exception!(py, inst, "inst[-2]", PyIndexError);
|
|
|
|
|
|
|
|
|
|
py_assert!(py, inst, "[*inst] == ['foo']");
|
|
|
|
|
|
|
|
|
|
py_run!(py, inst, "del inst[0]");
|
|
|
|
|
|
|
|
|
|
py_expect_exception!(py, inst, "inst['foo']", PyTypeError);
|
|
|
|
|
|
|
|
|
|
py_assert!(py, inst, "inst[0:2] == slice(0, 2)");
|
|
|
|
|
|
|
|
|
|
// check sequence protocol
|
|
|
|
|
|
|
|
|
|
// we don't implement sequence length so that CPython doesn't attempt to correct negative
|
|
|
|
|
// indices.
|
|
|
|
|
assert!(sequence.len().is_err());
|
|
|
|
|
// however regular python len() works thanks to mp_len slot
|
2024-02-22 22:38:42 +00:00
|
|
|
|
assert_eq!(inst.bind(py).len().unwrap(), 0);
|
2021-11-06 11:21:15 +00:00
|
|
|
|
|
|
|
|
|
py_run!(py, inst, "inst.append(0)");
|
|
|
|
|
sequence.set_item(0, 5).unwrap();
|
2024-02-22 22:38:42 +00:00
|
|
|
|
assert_eq!(inst.bind(py).len().unwrap(), 1);
|
2021-11-06 11:21:15 +00:00
|
|
|
|
|
|
|
|
|
assert_eq!(sequence.get_item(0).unwrap().extract::<u8>().unwrap(), 5);
|
|
|
|
|
sequence.del_item(0).unwrap();
|
|
|
|
|
|
2024-02-22 22:38:42 +00:00
|
|
|
|
assert_eq!(inst.bind(py).len().unwrap(), 0);
|
2021-11-06 11:21:15 +00:00
|
|
|
|
});
|
2021-09-09 08:11:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pyclass]
|
|
|
|
|
struct Iterator {
|
|
|
|
|
iter: Box<dyn iter::Iterator<Item = i32> + Send>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
|
impl Iterator {
|
2022-03-23 07:07:28 +00:00
|
|
|
|
fn __iter__(slf: PyRef<'_, Self>) -> PyRef<'_, Self> {
|
2021-09-09 08:11:41 +00:00
|
|
|
|
slf
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-23 07:07:28 +00:00
|
|
|
|
fn __next__(mut slf: PyRefMut<'_, Self>) -> Option<i32> {
|
2021-09-09 08:11:41 +00:00
|
|
|
|
slf.iter.next()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn iterator() {
|
2022-07-19 17:34:23 +00:00
|
|
|
|
Python::with_gil(|py| {
|
|
|
|
|
let inst = Py::new(
|
|
|
|
|
py,
|
|
|
|
|
Iterator {
|
|
|
|
|
iter: Box::new(5..8),
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
.unwrap();
|
|
|
|
|
py_assert!(py, inst, "iter(inst) is inst");
|
|
|
|
|
py_assert!(py, inst, "list(inst) == [5, 6, 7]");
|
|
|
|
|
});
|
2021-09-09 08:11:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pyclass]
|
2021-10-17 21:49:10 +00:00
|
|
|
|
struct Callable;
|
2021-09-09 08:11:41 +00:00
|
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
|
impl Callable {
|
|
|
|
|
fn __call__(&self, arg: i32) -> i32 {
|
|
|
|
|
arg * 6
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-09 16:00:35 +00:00
|
|
|
|
#[pyclass]
|
2021-10-17 21:49:10 +00:00
|
|
|
|
struct NotCallable;
|
2021-09-09 16:00:35 +00:00
|
|
|
|
|
2021-09-09 08:11:41 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn callable() {
|
2022-07-19 17:34:23 +00:00
|
|
|
|
Python::with_gil(|py| {
|
|
|
|
|
let c = Py::new(py, Callable).unwrap();
|
|
|
|
|
py_assert!(py, c, "callable(c)");
|
|
|
|
|
py_assert!(py, c, "c(7) == 42");
|
2021-09-09 08:11:41 +00:00
|
|
|
|
|
2022-07-19 17:34:23 +00:00
|
|
|
|
let nc = Py::new(py, NotCallable).unwrap();
|
|
|
|
|
py_assert!(py, nc, "not callable(nc)");
|
|
|
|
|
});
|
2021-09-09 08:11:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pyclass]
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
|
struct SetItem {
|
|
|
|
|
key: i32,
|
|
|
|
|
val: i32,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
|
impl SetItem {
|
|
|
|
|
fn __setitem__(&mut self, key: i32, val: i32) {
|
|
|
|
|
self.key = key;
|
|
|
|
|
self.val = val;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn setitem() {
|
2022-07-19 17:34:23 +00:00
|
|
|
|
Python::with_gil(|py| {
|
2024-02-20 07:45:47 +00:00
|
|
|
|
let c = Bound::new(py, SetItem { key: 0, val: 0 }).unwrap();
|
2022-07-19 17:34:23 +00:00
|
|
|
|
py_run!(py, c, "c[1] = 2");
|
|
|
|
|
{
|
|
|
|
|
let c = c.borrow();
|
|
|
|
|
assert_eq!(c.key, 1);
|
|
|
|
|
assert_eq!(c.val, 2);
|
|
|
|
|
}
|
|
|
|
|
py_expect_exception!(py, c, "del c[1]", PyNotImplementedError);
|
|
|
|
|
});
|
2021-09-09 08:11:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pyclass]
|
|
|
|
|
struct DelItem {
|
|
|
|
|
key: i32,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
|
impl DelItem {
|
|
|
|
|
fn __delitem__(&mut self, key: i32) {
|
|
|
|
|
self.key = key;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn delitem() {
|
2022-07-19 17:34:23 +00:00
|
|
|
|
Python::with_gil(|py| {
|
2024-02-20 07:45:47 +00:00
|
|
|
|
let c = Bound::new(py, DelItem { key: 0 }).unwrap();
|
2022-07-19 17:34:23 +00:00
|
|
|
|
py_run!(py, c, "del c[1]");
|
|
|
|
|
{
|
|
|
|
|
let c = c.borrow();
|
|
|
|
|
assert_eq!(c.key, 1);
|
|
|
|
|
}
|
|
|
|
|
py_expect_exception!(py, c, "c[1] = 2", PyNotImplementedError);
|
|
|
|
|
});
|
2021-09-09 08:11:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pyclass]
|
|
|
|
|
struct SetDelItem {
|
|
|
|
|
val: Option<i32>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
|
impl SetDelItem {
|
|
|
|
|
fn __setitem__(&mut self, _key: i32, val: i32) {
|
|
|
|
|
self.val = Some(val);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn __delitem__(&mut self, _key: i32) {
|
|
|
|
|
self.val = None;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn setdelitem() {
|
2022-07-19 17:34:23 +00:00
|
|
|
|
Python::with_gil(|py| {
|
2024-02-20 07:45:47 +00:00
|
|
|
|
let c = Bound::new(py, SetDelItem { val: None }).unwrap();
|
2022-07-19 17:34:23 +00:00
|
|
|
|
py_run!(py, c, "c[1] = 2");
|
|
|
|
|
{
|
|
|
|
|
let c = c.borrow();
|
|
|
|
|
assert_eq!(c.val, Some(2));
|
|
|
|
|
}
|
|
|
|
|
py_run!(py, c, "del c[1]");
|
2021-09-09 08:11:41 +00:00
|
|
|
|
let c = c.borrow();
|
2022-07-19 17:34:23 +00:00
|
|
|
|
assert_eq!(c.val, None);
|
|
|
|
|
});
|
2021-09-09 08:11:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pyclass]
|
|
|
|
|
struct Contains {}
|
|
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
|
impl Contains {
|
|
|
|
|
fn __contains__(&self, item: i32) -> bool {
|
|
|
|
|
item >= 0
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn contains() {
|
2022-07-19 17:34:23 +00:00
|
|
|
|
Python::with_gil(|py| {
|
|
|
|
|
let c = Py::new(py, Contains {}).unwrap();
|
|
|
|
|
py_run!(py, c, "assert 1 in c");
|
|
|
|
|
py_run!(py, c, "assert -1 not in c");
|
|
|
|
|
py_expect_exception!(py, c, "assert 'wrong type' not in c", PyTypeError);
|
|
|
|
|
});
|
2021-09-09 08:11:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pyclass]
|
2021-09-09 16:00:35 +00:00
|
|
|
|
struct GetItem {}
|
2021-09-09 08:11:41 +00:00
|
|
|
|
|
|
|
|
|
#[pymethods]
|
2021-09-09 16:00:35 +00:00
|
|
|
|
impl GetItem {
|
2024-03-20 22:35:08 +00:00
|
|
|
|
fn __getitem__(&self, idx: &Bound<'_, PyAny>) -> PyResult<&'static str> {
|
2022-11-14 06:15:33 +00:00
|
|
|
|
if let Ok(slice) = idx.downcast::<PySlice>() {
|
2021-09-09 08:11:41 +00:00
|
|
|
|
let indices = slice.indices(1000)?;
|
|
|
|
|
if indices.start == 100 && indices.stop == 200 && indices.step == 1 {
|
|
|
|
|
return Ok("slice");
|
|
|
|
|
}
|
|
|
|
|
} else if let Ok(idx) = idx.extract::<isize>() {
|
|
|
|
|
if idx == 1 {
|
|
|
|
|
return Ok("int");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Err(PyValueError::new_err("error"))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
2021-09-09 16:00:35 +00:00
|
|
|
|
fn test_getitem() {
|
2022-07-19 17:34:23 +00:00
|
|
|
|
Python::with_gil(|py| {
|
|
|
|
|
let ob = Py::new(py, GetItem {}).unwrap();
|
2021-09-09 08:11:41 +00:00
|
|
|
|
|
2022-07-19 17:34:23 +00:00
|
|
|
|
py_assert!(py, ob, "ob[1] == 'int'");
|
|
|
|
|
py_assert!(py, ob, "ob[100:200:1] == 'slice'");
|
|
|
|
|
});
|
2021-09-09 08:11:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pyclass]
|
|
|
|
|
struct ClassWithGetAttr {
|
|
|
|
|
#[pyo3(get, set)]
|
|
|
|
|
data: u32,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
|
impl ClassWithGetAttr {
|
|
|
|
|
fn __getattr__(&self, _name: &str) -> u32 {
|
|
|
|
|
self.data * 2
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn getattr_doesnt_override_member() {
|
2022-07-19 17:34:23 +00:00
|
|
|
|
Python::with_gil(|py| {
|
2024-02-20 07:45:47 +00:00
|
|
|
|
let inst = Py::new(py, ClassWithGetAttr { data: 4 }).unwrap();
|
2022-07-19 17:34:23 +00:00
|
|
|
|
py_assert!(py, inst, "inst.data == 4");
|
|
|
|
|
py_assert!(py, inst, "inst.a == 8");
|
|
|
|
|
});
|
2021-09-09 08:11:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-02-25 17:52:36 +00:00
|
|
|
|
#[pyclass]
|
|
|
|
|
struct ClassWithGetAttribute {
|
|
|
|
|
#[pyo3(get, set)]
|
|
|
|
|
data: u32,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
|
impl ClassWithGetAttribute {
|
|
|
|
|
fn __getattribute__(&self, _name: &str) -> u32 {
|
|
|
|
|
self.data * 2
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn getattribute_overrides_member() {
|
2022-07-19 17:34:23 +00:00
|
|
|
|
Python::with_gil(|py| {
|
2024-02-20 07:45:47 +00:00
|
|
|
|
let inst = Py::new(py, ClassWithGetAttribute { data: 4 }).unwrap();
|
2022-07-19 17:34:23 +00:00
|
|
|
|
py_assert!(py, inst, "inst.data == 8");
|
|
|
|
|
py_assert!(py, inst, "inst.y == 8");
|
|
|
|
|
});
|
2022-02-25 17:52:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pyclass]
|
|
|
|
|
struct ClassWithGetAttrAndGetAttribute;
|
|
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
|
impl ClassWithGetAttrAndGetAttribute {
|
|
|
|
|
fn __getattribute__(&self, name: &str) -> PyResult<u32> {
|
|
|
|
|
if name == "exists" {
|
|
|
|
|
Ok(42)
|
|
|
|
|
} else if name == "error" {
|
|
|
|
|
Err(PyValueError::new_err("bad"))
|
|
|
|
|
} else {
|
|
|
|
|
Err(PyAttributeError::new_err("fallback"))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn __getattr__(&self, name: &str) -> PyResult<u32> {
|
|
|
|
|
if name == "lucky" {
|
|
|
|
|
Ok(57)
|
|
|
|
|
} else {
|
|
|
|
|
Err(PyAttributeError::new_err("no chance"))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn getattr_and_getattribute() {
|
2022-07-19 17:34:23 +00:00
|
|
|
|
Python::with_gil(|py| {
|
2024-02-20 07:45:47 +00:00
|
|
|
|
let inst = Py::new(py, ClassWithGetAttrAndGetAttribute).unwrap();
|
2022-07-19 17:34:23 +00:00
|
|
|
|
py_assert!(py, inst, "inst.exists == 42");
|
|
|
|
|
py_assert!(py, inst, "inst.lucky == 57");
|
|
|
|
|
py_expect_exception!(py, inst, "inst.error", PyValueError);
|
|
|
|
|
py_expect_exception!(py, inst, "inst.unlucky", PyAttributeError);
|
|
|
|
|
});
|
2022-02-25 17:52:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-09 08:11:41 +00:00
|
|
|
|
/// Wraps a Python future and yield it once.
|
|
|
|
|
#[pyclass]
|
2022-02-15 22:51:37 +00:00
|
|
|
|
#[derive(Debug)]
|
2021-09-09 08:11:41 +00:00
|
|
|
|
struct OnceFuture {
|
|
|
|
|
future: PyObject,
|
|
|
|
|
polled: bool,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
|
impl OnceFuture {
|
|
|
|
|
#[new]
|
|
|
|
|
fn new(future: PyObject) -> Self {
|
|
|
|
|
OnceFuture {
|
|
|
|
|
future,
|
|
|
|
|
polled: false,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-23 07:07:28 +00:00
|
|
|
|
fn __await__(slf: PyRef<'_, Self>) -> PyRef<'_, Self> {
|
2021-09-09 08:11:41 +00:00
|
|
|
|
slf
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-23 07:07:28 +00:00
|
|
|
|
fn __iter__(slf: PyRef<'_, Self>) -> PyRef<'_, Self> {
|
2021-09-09 08:11:41 +00:00
|
|
|
|
slf
|
|
|
|
|
}
|
2024-02-18 00:09:56 +00:00
|
|
|
|
fn __next__<'py>(&mut self, py: Python<'py>) -> Option<&Bound<'py, PyAny>> {
|
2023-12-18 15:26:33 +00:00
|
|
|
|
if !self.polled {
|
|
|
|
|
self.polled = true;
|
2024-02-18 00:09:56 +00:00
|
|
|
|
Some(self.future.bind(py))
|
2021-09-09 08:11:41 +00:00
|
|
|
|
} else {
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
2022-06-08 04:59:18 +00:00
|
|
|
|
#[cfg(not(target_arch = "wasm32"))] // Won't work without wasm32 event loop (e.g., Pyodide has WebLoop)
|
2021-09-09 08:11:41 +00:00
|
|
|
|
fn test_await() {
|
2022-07-19 17:34:23 +00:00
|
|
|
|
Python::with_gil(|py| {
|
2024-02-18 18:27:19 +00:00
|
|
|
|
let once = py.get_type_bound::<OnceFuture>();
|
2022-07-19 17:34:23 +00:00
|
|
|
|
let source = r#"
|
2021-09-09 08:11:41 +00:00
|
|
|
|
import asyncio
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
async def main():
|
|
|
|
|
res = await Once(await asyncio.sleep(0.1))
|
2022-02-15 22:51:37 +00:00
|
|
|
|
assert res is None
|
|
|
|
|
|
|
|
|
|
# For an odd error similar to https://bugs.python.org/issue38563
|
|
|
|
|
if sys.platform == "win32" and sys.version_info >= (3, 8, 0):
|
|
|
|
|
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
|
|
|
|
|
|
|
|
|
|
asyncio.run(main())
|
|
|
|
|
"#;
|
2024-02-22 09:35:47 +00:00
|
|
|
|
let globals = PyModule::import_bound(py, "__main__").unwrap().dict();
|
2022-07-19 17:34:23 +00:00
|
|
|
|
globals.set_item("Once", once).unwrap();
|
2024-02-05 18:44:00 +00:00
|
|
|
|
py.run_bound(source, Some(&globals), None)
|
2023-07-21 13:30:02 +00:00
|
|
|
|
.map_err(|e| e.display(py))
|
2022-07-19 17:34:23 +00:00
|
|
|
|
.unwrap();
|
|
|
|
|
});
|
2022-02-15 22:51:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pyclass]
|
|
|
|
|
struct AsyncIterator {
|
|
|
|
|
future: Option<Py<OnceFuture>>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
|
impl AsyncIterator {
|
|
|
|
|
#[new]
|
|
|
|
|
fn new(future: Py<OnceFuture>) -> Self {
|
|
|
|
|
Self {
|
|
|
|
|
future: Some(future),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-23 07:07:28 +00:00
|
|
|
|
fn __aiter__(slf: PyRef<'_, Self>) -> PyRef<'_, Self> {
|
2022-02-15 22:51:37 +00:00
|
|
|
|
slf
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn __anext__(&mut self) -> Option<Py<OnceFuture>> {
|
|
|
|
|
self.future.take()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
2022-06-08 04:59:18 +00:00
|
|
|
|
#[cfg(not(target_arch = "wasm32"))] // Won't work without wasm32 event loop (e.g., Pyodide has WebLoop)
|
2022-02-15 22:51:37 +00:00
|
|
|
|
fn test_anext_aiter() {
|
2022-07-19 17:34:23 +00:00
|
|
|
|
Python::with_gil(|py| {
|
2024-02-18 18:27:19 +00:00
|
|
|
|
let once = py.get_type_bound::<OnceFuture>();
|
2022-07-19 17:34:23 +00:00
|
|
|
|
let source = r#"
|
2022-02-15 22:51:37 +00:00
|
|
|
|
import asyncio
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
async def main():
|
|
|
|
|
count = 0
|
|
|
|
|
async for result in AsyncIterator(Once(await asyncio.sleep(0.1))):
|
|
|
|
|
# The Once is awaited as part of the `async for` and produces None
|
|
|
|
|
assert result is None
|
|
|
|
|
count +=1
|
|
|
|
|
assert count == 1
|
|
|
|
|
|
2021-09-09 08:11:41 +00:00
|
|
|
|
# For an odd error similar to https://bugs.python.org/issue38563
|
|
|
|
|
if sys.platform == "win32" and sys.version_info >= (3, 8, 0):
|
|
|
|
|
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
|
2022-02-15 22:51:37 +00:00
|
|
|
|
|
|
|
|
|
asyncio.run(main())
|
|
|
|
|
"#;
|
2024-02-22 09:35:47 +00:00
|
|
|
|
let globals = PyModule::import_bound(py, "__main__").unwrap().dict();
|
2022-07-19 17:34:23 +00:00
|
|
|
|
globals.set_item("Once", once).unwrap();
|
|
|
|
|
globals
|
2024-02-18 18:27:19 +00:00
|
|
|
|
.set_item("AsyncIterator", py.get_type_bound::<AsyncIterator>())
|
2022-07-19 17:34:23 +00:00
|
|
|
|
.unwrap();
|
2024-02-05 18:44:00 +00:00
|
|
|
|
py.run_bound(source, Some(&globals), None)
|
2023-07-21 13:30:02 +00:00
|
|
|
|
.map_err(|e| e.display(py))
|
2022-07-19 17:34:23 +00:00
|
|
|
|
.unwrap();
|
|
|
|
|
});
|
2021-09-09 08:11:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Increment the count when `__get__` is called.
|
|
|
|
|
#[pyclass]
|
|
|
|
|
struct DescrCounter {
|
|
|
|
|
#[pyo3(get)]
|
|
|
|
|
count: usize,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
|
impl DescrCounter {
|
|
|
|
|
#[new]
|
|
|
|
|
fn new() -> Self {
|
|
|
|
|
DescrCounter { count: 0 }
|
|
|
|
|
}
|
2021-10-24 08:40:32 +00:00
|
|
|
|
/// Each access will increase the count
|
2021-09-09 08:11:41 +00:00
|
|
|
|
fn __get__<'a>(
|
|
|
|
|
mut slf: PyRefMut<'a, Self>,
|
2024-03-20 22:35:08 +00:00
|
|
|
|
_instance: &Bound<'_, PyAny>,
|
|
|
|
|
_owner: Option<&Bound<'_, PyType>>,
|
2021-09-09 08:11:41 +00:00
|
|
|
|
) -> PyRefMut<'a, Self> {
|
|
|
|
|
slf.count += 1;
|
|
|
|
|
slf
|
|
|
|
|
}
|
2021-10-24 08:40:32 +00:00
|
|
|
|
/// Allow assigning a new counter to the descriptor, copying the count across
|
2024-03-20 22:35:08 +00:00
|
|
|
|
fn __set__(&self, _instance: &Bound<'_, PyAny>, new_value: &mut Self) {
|
2021-10-24 08:40:32 +00:00
|
|
|
|
new_value.count = self.count;
|
|
|
|
|
}
|
|
|
|
|
/// Delete to reset the counter
|
2024-03-20 22:35:08 +00:00
|
|
|
|
fn __delete__(&mut self, _instance: &Bound<'_, PyAny>) {
|
2021-10-24 08:40:32 +00:00
|
|
|
|
self.count = 0;
|
2021-09-09 08:11:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn descr_getset() {
|
2022-07-19 17:34:23 +00:00
|
|
|
|
Python::with_gil(|py| {
|
2024-02-18 18:27:19 +00:00
|
|
|
|
let counter = py.get_type_bound::<DescrCounter>();
|
2022-07-19 17:34:23 +00:00
|
|
|
|
let source = pyo3::indoc::indoc!(
|
|
|
|
|
r#"
|
2021-09-09 08:11:41 +00:00
|
|
|
|
class Class:
|
|
|
|
|
counter = Counter()
|
2021-11-15 15:45:01 +00:00
|
|
|
|
|
|
|
|
|
# access via type
|
|
|
|
|
counter = Class.counter
|
|
|
|
|
assert counter.count == 1
|
|
|
|
|
|
|
|
|
|
# access with instance directly
|
|
|
|
|
assert Counter.__get__(counter, Class()).count == 2
|
|
|
|
|
|
|
|
|
|
# access via instance
|
2021-09-09 08:11:41 +00:00
|
|
|
|
c = Class()
|
|
|
|
|
assert c.counter.count == 3
|
2021-11-15 15:45:01 +00:00
|
|
|
|
|
|
|
|
|
# __set__
|
|
|
|
|
c.counter = Counter()
|
|
|
|
|
assert c.counter.count == 4
|
|
|
|
|
|
|
|
|
|
# __delete__
|
2021-10-24 08:40:32 +00:00
|
|
|
|
del c.counter
|
|
|
|
|
assert c.counter.count == 1
|
2021-09-09 08:11:41 +00:00
|
|
|
|
"#
|
2022-07-19 17:34:23 +00:00
|
|
|
|
);
|
2024-02-22 09:35:47 +00:00
|
|
|
|
let globals = PyModule::import_bound(py, "__main__").unwrap().dict();
|
2022-07-19 17:34:23 +00:00
|
|
|
|
globals.set_item("Counter", counter).unwrap();
|
2024-02-05 18:44:00 +00:00
|
|
|
|
py.run_bound(source, Some(&globals), None)
|
2023-07-21 13:30:02 +00:00
|
|
|
|
.map_err(|e| e.display(py))
|
2022-07-19 17:34:23 +00:00
|
|
|
|
.unwrap();
|
|
|
|
|
});
|
2021-09-09 08:11:41 +00:00
|
|
|
|
}
|
2021-11-07 08:16:15 +00:00
|
|
|
|
|
|
|
|
|
#[pyclass]
|
|
|
|
|
struct NotHashable;
|
|
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
|
impl NotHashable {
|
|
|
|
|
#[classattr]
|
|
|
|
|
const __hash__: Option<PyObject> = None;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_hash_opt_out() {
|
|
|
|
|
// By default Python provides a hash implementation, which can be disabled by setting __hash__
|
|
|
|
|
// to None.
|
|
|
|
|
Python::with_gil(|py| {
|
|
|
|
|
let empty = Py::new(py, EmptyClass).unwrap();
|
|
|
|
|
py_assert!(py, empty, "hash(empty) is not None");
|
|
|
|
|
|
|
|
|
|
let not_hashable = Py::new(py, NotHashable).unwrap();
|
|
|
|
|
py_expect_exception!(py, not_hashable, "hash(not_hashable)", PyTypeError);
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Class with __iter__ gets default contains from CPython.
|
|
|
|
|
#[pyclass]
|
|
|
|
|
struct DefaultedContains;
|
|
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
|
impl DefaultedContains {
|
2022-03-23 07:07:28 +00:00
|
|
|
|
fn __iter__(&self, py: Python<'_>) -> PyObject {
|
2024-01-23 08:39:19 +00:00
|
|
|
|
PyList::new_bound(py, ["a", "b", "c"])
|
2021-11-07 08:16:15 +00:00
|
|
|
|
.as_ref()
|
|
|
|
|
.iter()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.into()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[pyclass]
|
|
|
|
|
struct NoContains;
|
|
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
|
impl NoContains {
|
2022-03-23 07:07:28 +00:00
|
|
|
|
fn __iter__(&self, py: Python<'_>) -> PyObject {
|
2024-01-23 08:39:19 +00:00
|
|
|
|
PyList::new_bound(py, ["a", "b", "c"])
|
2021-11-07 08:16:15 +00:00
|
|
|
|
.as_ref()
|
|
|
|
|
.iter()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.into()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Equivalent to the opt-out const form in NotHashable above, just more verbose, to confirm this
|
|
|
|
|
// also works.
|
|
|
|
|
#[classattr]
|
|
|
|
|
fn __contains__() -> Option<PyObject> {
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_contains_opt_out() {
|
|
|
|
|
Python::with_gil(|py| {
|
|
|
|
|
let defaulted_contains = Py::new(py, DefaultedContains).unwrap();
|
|
|
|
|
py_assert!(py, defaulted_contains, "'a' in defaulted_contains");
|
|
|
|
|
|
|
|
|
|
let no_contains = Py::new(py, NoContains).unwrap();
|
|
|
|
|
py_expect_exception!(py, no_contains, "'a' in no_contains", PyTypeError);
|
|
|
|
|
})
|
|
|
|
|
}
|