-
Notifications
You must be signed in to change notification settings - Fork 777
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Gates #[pymodule] mod behind the experimental-declarative-modules fea…
…ture
- Loading branch information
Showing
9 changed files
with
167 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
The ability to create Python modules with a Rust `mod` block. | ||
The ability to create Python modules with a Rust `mod` block | ||
behind the `experimental-declarative-modules` feature. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
#![cfg(feature = "experimental-declarative-modules")] | ||
|
||
use pyo3::create_exception; | ||
use pyo3::exceptions::PyException; | ||
use pyo3::prelude::*; | ||
|
||
#[path = "../src/tests/common.rs"] | ||
mod common; | ||
|
||
#[pyclass] | ||
struct ValueClass { | ||
value: usize, | ||
} | ||
|
||
#[pymethods] | ||
impl ValueClass { | ||
#[new] | ||
fn new(value: usize) -> ValueClass { | ||
ValueClass { value } | ||
} | ||
} | ||
|
||
#[pyclass(module = "module")] | ||
struct LocatedClass {} | ||
|
||
#[pyfunction] | ||
fn double(x: usize) -> usize { | ||
x * 2 | ||
} | ||
|
||
create_exception!( | ||
declarative_module, | ||
MyError, | ||
PyException, | ||
"Some description." | ||
); | ||
|
||
/// A module written using declarative syntax. | ||
#[pymodule] | ||
mod declarative_module { | ||
#[pymodule_export] | ||
use super::declarative_submodule; | ||
#[pymodule_export] | ||
// This is not a real constraint but to test cfg attribute support | ||
#[cfg(not(Py_LIMITED_API))] | ||
use super::LocatedClass; | ||
use super::*; | ||
#[pymodule_export] | ||
use super::{declarative_module2, double, MyError, ValueClass as Value}; | ||
|
||
#[pymodule_init] | ||
fn init(m: &Bound<'_, PyModule>) -> PyResult<()> { | ||
m.add("double2", m.getattr("double")?) | ||
} | ||
} | ||
|
||
#[pyfunction] | ||
fn double_value(v: &ValueClass) -> usize { | ||
v.value * 2 | ||
} | ||
|
||
#[pymodule] | ||
mod declarative_submodule { | ||
#[pymodule_export] | ||
use super::{double, double_value}; | ||
} | ||
|
||
/// A module written using declarative syntax. | ||
#[pymodule] | ||
#[pyo3(name = "declarative_module_renamed")] | ||
mod declarative_module2 { | ||
#[pymodule_export] | ||
use super::double; | ||
} | ||
|
||
#[test] | ||
fn test_declarative_module() { | ||
Python::with_gil(|py| { | ||
let m = pyo3::wrap_pymodule!(declarative_module)(py).into_bound(py); | ||
py_assert!( | ||
py, | ||
m, | ||
"m.__doc__ == 'A module written using declarative syntax.'" | ||
); | ||
|
||
py_assert!(py, m, "m.double(2) == 4"); | ||
py_assert!(py, m, "m.double2(3) == 6"); | ||
py_assert!(py, m, "m.declarative_submodule.double(4) == 8"); | ||
py_assert!( | ||
py, | ||
m, | ||
"m.declarative_submodule.double_value(m.ValueClass(1)) == 2" | ||
); | ||
py_assert!(py, m, "str(m.MyError('foo')) == 'foo'"); | ||
py_assert!(py, m, "m.declarative_module_renamed.double(2) == 4"); | ||
#[cfg(Py_LIMITED_API)] | ||
py_assert!(py, m, "not hasattr(m, 'LocatedClass')"); | ||
#[cfg(not(Py_LIMITED_API))] | ||
py_assert!(py, m, "hasattr(m, 'LocatedClass')"); | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters