我正在使用 pyo3 编写一个带有 Rust 后端的 python 库,我不明白为什么当你调用错误的构造函数时没有抛出错误,我认为当我显示代码时我所说的会更有意义。
// vector.rs
use pyo3::prelude::*;
#[pyclass]
pub struct Vector {
#[pyo3(get, set)]
x: f64,
#[pyo3(get, set)]
y: f64,
#[pyo3(get, set)]
z: f64
}
#[pymethods]
impl Vector {
#[new]
fn new() -> Self {
Vector {
x: 0.0,
y: 0.0,
z: 0.0
}
}
}
// lib.rs
mod core;
use pyo3::prelude::*;
use crate::core::vector::Vector;
#[pymodule]
fn imagine(_py: Python<'_>, m: &PyModule) -> PyResult<()> {
m.add_class::<Vector>()?;
Ok(())
}
它编译得很好,但是当我使用错误的构造函数时,它不会引发任何错误。
>>> from imagine import *
>>> a = Vector("yo")
>>> a
<Vector object at 0x10eb5e650>