Skip to content

Commit

Permalink
Merge pull request #2009 from vxgmichel/pyobject-setattr
Browse files Browse the repository at this point in the history
Add Py<T>.setattr method
  • Loading branch information
davidhewitt authored Nov 19, 2021
2 parents b0d957b + 91caa81 commit 3271b90
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
15 changes: 15 additions & 0 deletions src/instance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -528,6 +528,21 @@ impl<T> Py<T> {
})
}

/// Sets an attribute value.
///
/// This is equivalent to the Python expression `self.attr_name = value`.
pub fn setattr<N, V>(&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)`.
Expand Down

0 comments on commit 3271b90

Please sign in to comment.