Merge pull request #1492 from davidhewitt/no-pymodule-call-function
pymodule: remove call_function etc.
This commit is contained in:
commit
6ab61a1560
|
@ -23,7 +23,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
||||||
- Deprecate FFI definitions `PyModule_GetFilename`. [#1425](https://github.com/PyO3/pyo3/pull/1425)
|
- Deprecate FFI definitions `PyModule_GetFilename`. [#1425](https://github.com/PyO3/pyo3/pull/1425)
|
||||||
- The `auto-initialize` feature is no longer enabled by default. [#1443](https://github.com/PyO3/pyo3/pull/1443)
|
- The `auto-initialize` feature is no longer enabled by default. [#1443](https://github.com/PyO3/pyo3/pull/1443)
|
||||||
- Change `PyCFunction::new()` and `PyCFunction::new_with_keywords()` to take `&'static str` arguments rather than implicitly copying (and leaking) them. [#1450](https://github.com/PyO3/pyo3/pull/1450)
|
- Change `PyCFunction::new()` and `PyCFunction::new_with_keywords()` to take `&'static str` arguments rather than implicitly copying (and leaking) them. [#1450](https://github.com/PyO3/pyo3/pull/1450)
|
||||||
- The `call/call0/call1` methods of `PyModule` have been renamed to `call_function` etc. for consistency with `call` and `call_method` on `PyAny`. The old names are still present, but deprecated. [#1467](https://github.com/PyO3/pyo3/pull/1467)
|
- Deprecate `PyModule` methods `call`, `call0`, `call1` and `get`. [#1492](https://github.com/PyO3/pyo3/pull/1492)
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
- Remove deprecated exception names `BaseException` etc. [#1426](https://github.com/PyO3/pyo3/pull/1426)
|
- Remove deprecated exception names `BaseException` etc. [#1426](https://github.com/PyO3/pyo3/pull/1426)
|
||||||
|
|
|
@ -115,7 +115,7 @@ use pyo3::prelude::*;
|
||||||
fn main() -> PyResult<()> {
|
fn main() -> PyResult<()> {
|
||||||
Python::with_gil(|py| {
|
Python::with_gil(|py| {
|
||||||
let builtins = PyModule::import(py, "builtins")?;
|
let builtins = PyModule::import(py, "builtins")?;
|
||||||
let total: i32 = builtins.call_function1("sum", (vec![1, 2, 3],))?.extract()?;
|
let total: i32 = builtins.getattr("sum")?.call1((vec![1, 2, 3],))?.extract()?;
|
||||||
assert_eq!(total, 6);
|
assert_eq!(total, 6);
|
||||||
Ok(())
|
Ok(())
|
||||||
})
|
})
|
||||||
|
@ -215,12 +215,12 @@ def leaky_relu(x, slope=0.01):
|
||||||
return x if x >= 0 else x * slope
|
return x if x >= 0 else x * slope
|
||||||
"#, "activators.py", "activators")?;
|
"#, "activators.py", "activators")?;
|
||||||
|
|
||||||
let relu_result: f64 = activators.call_function1("relu", (-1.0,))?.extract()?;
|
let relu_result: f64 = activators.getattr("relu")?.call1((-1.0,))?.extract()?;
|
||||||
assert_eq!(relu_result, 0.0);
|
assert_eq!(relu_result, 0.0);
|
||||||
|
|
||||||
let kwargs = [("slope", 0.2)].into_py_dict(py);
|
let kwargs = [("slope", 0.2)].into_py_dict(py);
|
||||||
let lrelu_result: f64 = activators
|
let lrelu_result: f64 = activators
|
||||||
.call_function("leaky_relu", (-1.0,), Some(kwargs))?
|
.getattr("leaky_relu")?.call((-1.0,), Some(kwargs))?
|
||||||
.extract()?;
|
.extract()?;
|
||||||
assert_eq!(lrelu_result, -0.2);
|
assert_eq!(lrelu_result, -0.2);
|
||||||
# Ok(())
|
# Ok(())
|
||||||
|
@ -255,7 +255,8 @@ class House(object):
|
||||||
|
|
||||||
"#, "house.py", "house").unwrap();
|
"#, "house.py", "house").unwrap();
|
||||||
|
|
||||||
let house = custom_manager.call_function1("House", ("123 Main Street",)).unwrap();
|
let house_class = custom_manager.getattr("House").unwrap();
|
||||||
|
let house = house_class.call1(("123 Main Street",)).unwrap();
|
||||||
|
|
||||||
house.call_method0("__enter__").unwrap();
|
house.call_method0("__enter__").unwrap();
|
||||||
|
|
||||||
|
|
|
@ -101,7 +101,7 @@ macro_rules! import_exception {
|
||||||
let imp = py
|
let imp = py
|
||||||
.import(stringify!($module))
|
.import(stringify!($module))
|
||||||
.expect(concat!("Can not import module: ", stringify!($module)));
|
.expect(concat!("Can not import module: ", stringify!($module)));
|
||||||
let cls = imp.get(stringify!($name)).expect(concat!(
|
let cls = imp.getattr(stringify!($name)).expect(concat!(
|
||||||
"Can not load exception class: {}.{}",
|
"Can not load exception class: {}.{}",
|
||||||
stringify!($module),
|
stringify!($module),
|
||||||
".",
|
".",
|
||||||
|
|
|
@ -121,65 +121,6 @@ impl PyModule {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Calls a function in the module.
|
|
||||||
///
|
|
||||||
/// This is equivalent to the Python expression `module.name(*args, **kwargs)`.
|
|
||||||
pub fn call_function(
|
|
||||||
&self,
|
|
||||||
name: &str,
|
|
||||||
args: impl IntoPy<Py<PyTuple>>,
|
|
||||||
kwargs: Option<&PyDict>,
|
|
||||||
) -> PyResult<&PyAny> {
|
|
||||||
self.getattr(name)?.call(args, kwargs)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Calls a function in the module with only positional arguments.
|
|
||||||
///
|
|
||||||
/// This is equivalent to the Python expression `module.name(*args)`.
|
|
||||||
pub fn call_function1(&self, name: &str, args: impl IntoPy<Py<PyTuple>>) -> PyResult<&PyAny> {
|
|
||||||
self.getattr(name)?.call1(args)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Calls a function in the module without arguments.
|
|
||||||
///
|
|
||||||
/// This is equivalent to the Python expression `module.name()`.
|
|
||||||
pub fn call_function0(&self, name: &str) -> PyResult<&PyAny> {
|
|
||||||
self.getattr(name)?.call0()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[deprecated(since = "0.14.0", note = "Renamed to call_function() for consistency.")]
|
|
||||||
pub fn call(
|
|
||||||
&self,
|
|
||||||
name: &str,
|
|
||||||
args: impl IntoPy<Py<PyTuple>>,
|
|
||||||
kwargs: Option<&PyDict>,
|
|
||||||
) -> PyResult<&PyAny> {
|
|
||||||
self.call_function(name, args, kwargs)
|
|
||||||
}
|
|
||||||
|
|
||||||
#[deprecated(
|
|
||||||
since = "0.14.0",
|
|
||||||
note = "Renamed to call_function1() for consistency."
|
|
||||||
)]
|
|
||||||
pub fn call1(&self, name: &str, args: impl IntoPy<Py<PyTuple>>) -> PyResult<&PyAny> {
|
|
||||||
self.call_function1(name, args)
|
|
||||||
}
|
|
||||||
|
|
||||||
#[deprecated(
|
|
||||||
since = "0.14.0",
|
|
||||||
note = "Renamed to call_function0() for consistency."
|
|
||||||
)]
|
|
||||||
pub fn call0(&self, name: &str) -> PyResult<&PyAny> {
|
|
||||||
self.call_function0(name)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Gets a member from the module.
|
|
||||||
///
|
|
||||||
/// This is equivalent to the Python expression `module.name`.
|
|
||||||
pub fn get(&self, name: &str) -> PyResult<&PyAny> {
|
|
||||||
self.getattr(name)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Adds a member to the module.
|
/// Adds a member to the module.
|
||||||
///
|
///
|
||||||
/// This is a convenience function which can be used from the module's initialization function.
|
/// This is a convenience function which can be used from the module's initialization function.
|
||||||
|
@ -302,6 +243,46 @@ impl PyModule {
|
||||||
let name = fun.getattr("__name__")?.extract()?;
|
let name = fun.getattr("__name__")?.extract()?;
|
||||||
self.add(name, fun)
|
self.add(name, fun)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Calls a function in the module.
|
||||||
|
///
|
||||||
|
/// This is equivalent to the Python expression `module.name(*args, **kwargs)`.
|
||||||
|
#[deprecated(
|
||||||
|
since = "0.14.0",
|
||||||
|
note = "use getattr(name)?.call(args, kwargs) instead"
|
||||||
|
)]
|
||||||
|
pub fn call(
|
||||||
|
&self,
|
||||||
|
name: &str,
|
||||||
|
args: impl IntoPy<Py<PyTuple>>,
|
||||||
|
kwargs: Option<&PyDict>,
|
||||||
|
) -> PyResult<&PyAny> {
|
||||||
|
self.getattr(name)?.call(args, kwargs)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Calls a function in the module with only positional arguments.
|
||||||
|
///
|
||||||
|
/// This is equivalent to the Python expression `module.name(*args)`.
|
||||||
|
#[deprecated(since = "0.14.0", note = "use getattr(name)?.call1(args) instead")]
|
||||||
|
pub fn call1(&self, name: &str, args: impl IntoPy<Py<PyTuple>>) -> PyResult<&PyAny> {
|
||||||
|
self.getattr(name)?.call1(args)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Calls a function in the module without arguments.
|
||||||
|
///
|
||||||
|
/// This is equivalent to the Python expression `module.name()`.
|
||||||
|
#[deprecated(since = "0.14.0", note = "use getattr(name)?.call0() instead")]
|
||||||
|
pub fn call0(&self, name: &str) -> PyResult<&PyAny> {
|
||||||
|
self.getattr(name)?.call0()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Gets a member from the module.
|
||||||
|
///
|
||||||
|
/// This is equivalent to the Python expression `module.name`.
|
||||||
|
#[deprecated(since = "0.14.0", note = "use getattr(name) instead")]
|
||||||
|
pub fn get(&self, name: &str) -> PyResult<&PyAny> {
|
||||||
|
self.getattr(name)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
|
|
|
@ -489,12 +489,12 @@ mod bigint_conversion {
|
||||||
.unwrap();
|
.unwrap();
|
||||||
// Checks if Python Long -> Rust BigUint conversion is correct if N is small
|
// Checks if Python Long -> Rust BigUint conversion is correct if N is small
|
||||||
let py_result: BigUint =
|
let py_result: BigUint =
|
||||||
FromPyObject::extract(fib.call_function1("fib", (400,)).unwrap()).unwrap();
|
FromPyObject::extract(fib.getattr("fib").unwrap().call1((400,)).unwrap()).unwrap();
|
||||||
assert_eq!(rs_result, py_result);
|
assert_eq!(rs_result, py_result);
|
||||||
// Checks if Python Long -> Rust BigUint conversion is correct if N is large
|
// Checks if Python Long -> Rust BigUint conversion is correct if N is large
|
||||||
let rs_result: BigUint = rust_fib(2000);
|
let rs_result: BigUint = rust_fib(2000);
|
||||||
let py_result: BigUint =
|
let py_result: BigUint =
|
||||||
FromPyObject::extract(fib.call_function1("fib", (2000,)).unwrap()).unwrap();
|
FromPyObject::extract(fib.getattr("fib").unwrap().call1((2000,)).unwrap()).unwrap();
|
||||||
assert_eq!(rs_result, py_result);
|
assert_eq!(rs_result, py_result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -512,12 +512,14 @@ mod bigint_conversion {
|
||||||
.unwrap();
|
.unwrap();
|
||||||
// Checks if Python Long -> Rust BigInt conversion is correct if N is small
|
// Checks if Python Long -> Rust BigInt conversion is correct if N is small
|
||||||
let py_result: BigInt =
|
let py_result: BigInt =
|
||||||
FromPyObject::extract(fib.call_function1("fib_neg", (400,)).unwrap()).unwrap();
|
FromPyObject::extract(fib.getattr("fib_neg").unwrap().call1((400,)).unwrap())
|
||||||
|
.unwrap();
|
||||||
assert_eq!(rs_result, py_result);
|
assert_eq!(rs_result, py_result);
|
||||||
// Checks if Python Long -> Rust BigInt conversion is correct if N is large
|
// Checks if Python Long -> Rust BigInt conversion is correct if N is large
|
||||||
let rs_result = rust_fib::<BigInt>(2000) * -1;
|
let rs_result = rust_fib::<BigInt>(2000) * -1;
|
||||||
let py_result: BigInt =
|
let py_result: BigInt =
|
||||||
FromPyObject::extract(fib.call_function1("fib_neg", (2000,)).unwrap()).unwrap();
|
FromPyObject::extract(fib.getattr("fib_neg").unwrap().call1((2000,)).unwrap())
|
||||||
|
.unwrap();
|
||||||
assert_eq!(rs_result, py_result);
|
assert_eq!(rs_result, py_result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -551,7 +553,7 @@ mod bigint_conversion {
|
||||||
let py = gil.python();
|
let py = gil.python();
|
||||||
let fib = python_fib(py);
|
let fib = python_fib(py);
|
||||||
let zero: BigInt =
|
let zero: BigInt =
|
||||||
FromPyObject::extract(fib.call_function1("fib", (0,)).unwrap()).unwrap();
|
FromPyObject::extract(fib.getattr("fib").unwrap().call1((0,)).unwrap()).unwrap();
|
||||||
assert_eq!(zero, BigInt::from(0));
|
assert_eq!(zero, BigInt::from(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ fn _get_subclasses<'p>(
|
||||||
// Import the class from Python and create some subclasses
|
// Import the class from Python and create some subclasses
|
||||||
let datetime = py.import("datetime")?;
|
let datetime = py.import("datetime")?;
|
||||||
|
|
||||||
let locals = [(py_type, datetime.get(py_type)?)].into_py_dict(*py);
|
let locals = [(py_type, datetime.getattr(py_type)?)].into_py_dict(*py);
|
||||||
|
|
||||||
let make_subclass_py = format!("class Subklass({}):\n pass", py_type);
|
let make_subclass_py = format!("class Subklass({}):\n pass", py_type);
|
||||||
|
|
||||||
|
@ -108,7 +108,7 @@ fn test_datetime_utc() {
|
||||||
let gil = Python::acquire_gil();
|
let gil = Python::acquire_gil();
|
||||||
let py = gil.python();
|
let py = gil.python();
|
||||||
let datetime = py.import("datetime").map_err(|e| e.print(py)).unwrap();
|
let datetime = py.import("datetime").map_err(|e| e.print(py)).unwrap();
|
||||||
let timezone = datetime.get("timezone").unwrap();
|
let timezone = datetime.getattr("timezone").unwrap();
|
||||||
let utc = timezone.getattr("utc").unwrap().to_object(py);
|
let utc = timezone.getattr("utc").unwrap().to_object(py);
|
||||||
|
|
||||||
let dt = PyDateTime::new(py, 2018, 1, 1, 0, 0, 0, 0, Some(&utc)).unwrap();
|
let dt = PyDateTime::new(py, 2018, 1, 1, 0, 0, 0, 0, Some(&utc)).unwrap();
|
||||||
|
|
|
@ -141,7 +141,7 @@ fn test_module_from_code() {
|
||||||
.expect("Module code should be loaded");
|
.expect("Module code should be loaded");
|
||||||
|
|
||||||
let add_func = adder_mod
|
let add_func = adder_mod
|
||||||
.get("add")
|
.getattr("add")
|
||||||
.expect("Add function should be in the module")
|
.expect("Add function should be in the module")
|
||||||
.to_object(py);
|
.to_object(py);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue