Merge pull request #2031 from davidhewitt/resurrect-type-is-instance

pytype: resurrect (deprecated) PyType::is_instance
This commit is contained in:
David Hewitt 2021-11-29 07:31:06 +00:00 committed by GitHub
commit 745551841e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 1 deletions

View File

@ -31,10 +31,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `ptraceback` -> `traceback` - `ptraceback` -> `traceback`
- `from_instance` -> `from_value` - `from_instance` -> `from_value`
- `into_instance` -> `into_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 ### 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) - Remove all functionality deprecated in PyO3 0.14. [#2007](https://github.com/PyO3/pyo3/pull/2007)
### Fixed ### Fixed

View File

@ -59,6 +59,19 @@ impl PyType {
{ {
self.is_subclass(T::type_object(self.py())) 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)] #[cfg(test)]
@ -84,4 +97,15 @@ mod tests {
assert!(PyBool::type_object(py).is_subclass_of::<PyLong>().unwrap()); 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());
})
}
} }