Skip to content

Commit

Permalink
Merge pull request #2031 from davidhewitt/resurrect-type-is-instance
Browse files Browse the repository at this point in the history
pytype: resurrect (deprecated) PyType::is_instance
  • Loading branch information
davidhewitt authored Nov 29, 2021
2 parents 770c02e + b56d492 commit 7455518
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `ptraceback` -> `traceback`
- `from_instance` -> `from_value`
- `into_instance` -> `into_value`
- Deprecate `PyType::is_instance`; it is inconsistent with other `is_instance` methods in PyO3. Instead of `typ.is_instance(obj)`, use `obj.is_instance(typ)`. [#2031](https://github.com/PyO3/pyo3/pull/2031)

### Removed

- Remove `PyType::is_instance`, which is unintuitive; instead of `typ.is_instance(obj)`, use `obj.is_instance(typ)`. [#1985](https://github.com/PyO3/pyo3/pull/1985)
- Remove all functionality deprecated in PyO3 0.14. [#2007](https://github.com/PyO3/pyo3/pull/2007)

### Fixed
Expand Down
24 changes: 24 additions & 0 deletions src/types/typeobject.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,19 @@ impl PyType {
{
self.is_subclass(T::type_object(self.py()))
}

#[deprecated(
since = "0.16.0",
note = "prefer obj.is_instance(type) to typ.is_instance(obj)"
)]
/// Equivalent to Python's `isinstance(obj, self)`.
///
/// This function has been deprecated because it has inverted argument ordering compared to
/// other `is_instance` functions in PyO3 such as [`PyAny::is_instance`].
pub fn is_instance<T: AsPyPointer>(&self, obj: &T) -> PyResult<bool> {
let any: &PyAny = unsafe { self.py().from_borrowed_ptr(obj.as_ptr()) };
any.is_instance(self)
}
}

#[cfg(test)]
Expand All @@ -84,4 +97,15 @@ mod tests {
assert!(PyBool::type_object(py).is_subclass_of::<PyLong>().unwrap());
});
}

#[test]
#[allow(deprecated)]
fn type_is_instance() {
Python::with_gil(|py| {
let bool_object = PyBool::new(py, false);
let bool_type = bool_object.get_type();
assert!(bool_type.is_instance(bool_object).unwrap());
assert!(bool_object.is_instance(bool_type).unwrap());
})
}
}

0 comments on commit 7455518

Please sign in to comment.