From 91caa814d0533127f09160c81039a18da517338a Mon Sep 17 00:00:00 2001 From: Vincent Michel Date: Fri, 19 Nov 2021 16:49:24 +0100 Subject: [PATCH] Add `Py::setattr` method --- CHANGELOG.md | 4 ++++ src/instance.rs | 15 +++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index db17f5f0..4b536823 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Update `indoc` optional dependency to 1.0. [#2004](https://github.com/PyO3/pyo3/pull/2004) - Update `paste` optional dependency to 1.0. [#2004](https://github.com/PyO3/pyo3/pull/2004) +### Added + +- Add `Py::setattr` method. [#2009](https://github.com/PyO3/pyo3/pull/2009) + ## [0.15.1] - 2021-11-19 ### Added diff --git a/src/instance.rs b/src/instance.rs index 269d22f3..b8f7ab69 100644 --- a/src/instance.rs +++ b/src/instance.rs @@ -528,6 +528,21 @@ impl Py { }) } + /// Sets an attribute value. + /// + /// This is equivalent to the Python expression `self.attr_name = value`. + pub fn setattr(&self, py: Python, attr_name: N, value: V) -> PyResult<()> + where + N: ToPyObject, + V: ToPyObject, + { + attr_name.with_borrowed_ptr(py, move |attr_name| { + value.with_borrowed_ptr(py, |value| unsafe { + err::error_on_minusone(py, ffi::PyObject_SetAttr(self.as_ptr(), attr_name, value)) + }) + }) + } + /// Calls the object. /// /// This is equivalent to the Python expression `self(*args, **kwargs)`.